I have the following layout:
/project
/thomas
/users
/src
code_alpha.py
/tests
code_beta.py
I tried:
/project
/thomas
/users
__init__.py
/src
code_alpha.py
/tests
code_beta.py
with from users.src import code_alpha
also tried:
/project
/thomas
/users
__init__.py
/src
code_alpha.py
__init__.py
/tests
code_beta.py
with from users.src import code_alpha
I tried to solve the problem with this guide and some similiar topics here, but could not figure out. Adding the directory to my path did not solve the problem.
edit: updated layout.