I have the following project structure
- src
- main.py
- foo
- ...
- test
- test_foo
- ...
- Pipfile
- setup.cfg
If I run pipenv run pytest test
I get import errors, because the test folder is outside the src folder and thus I cannot import the files correctly.
Is there a way to mark the src folder as my "source"-folder?