JulianFrattini / cira

Python package for functions around the causality in requirements artifacts (CiRA) initiative.
http://www.cira.bth.se/
Apache License 2.0
10 stars 1 forks source link

Specify pythonpath in pytest.ini #54

Closed andreas-bauer closed 1 year ago

andreas-bauer commented 1 year ago

This PR specifies the pythonpath setting in pytest.ini to avoid problems within Docker containers.

Without this setting it is not possible to run pytest within the cira-dev image since it is not able to resolve some of the Python modules.

andreas-bauer commented 1 year ago

This PR is not needed. I imported model_locator wrong and therefore it failed within the container.

Wrong: import model_locator Correct: from src import model_locator