whenever i start coding something in python i use the following folder structure: my_project ./foo ./__init__.py ./bar.py ./tests ./test_foo.py ./test_bar.py but i used to get confused on how to organize the import(s) and when to use PYTHONPATH for my tests. my requirements are: i want to be able to run my tests both from my_project folder and from the tests folder i don’t want to set the PYTHONPA
