Closed andreas-bauer closed 1 year ago
This PR specifies the pythonpath setting in pytest.ini to avoid problems within Docker containers.
pythonpath
pytest.ini
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.
pytest
cira-dev
This PR is not needed. I imported model_locator wrong and therefore it failed within the container.
model_locator
Wrong: import model_locator Correct: from src import model_locator
import model_locator
from src import model_locator
This PR specifies the
pythonpath
setting inpytest.ini
to avoid problems within Docker containers.Without this setting it is not possible to run
pytest
within thecira-dev
image since it is not able to resolve some of the Python modules.