Currently having issues with pytest, i'm able to run my tests/__main__.py file, which contains a from src.args import args
However, in tests/vanilla/test_writing.py it errors, and it contains from src.helpers import read_file, write_file
The error, in question, ModuleNotFoundError: No module named 'src' for the test writing file.
It's quite a large codebase, so please let me know if you need specific information. AFAIK, i'm importing just fine on the __main__.py, which should also work in tests/vanilla (bc of the __init__.py files.)