Closed hiftikha closed 4 months ago
After merging the PR for code formatting, this one has a lot of conflicts. Which I guess is sort of unavoidable.
For the moment, it seems like we're happy with how the python imports are working in this repo. I think we might come back to this, but if that's the case it's easy enough to reopen this PR.
What's New
package/ ├── init.py ├── src/ │ ├── init.py │ ├── main_module.py │ └── other_modules/ ├── tests/ │ ├── init.py │ ├── main_module_test.py │ ├── other_module_test.py │ └── test_data.py └── README.md
What This Changes
sys.path.insert(0, str(Path(__file__).parent.parent))
orsys.path.append(".")
Why This Change is Needed
How to Test
poetry run pytest