I have a folder structure like this:
setup.py
core/
__init__.py
interpreter.py
tests/
__init__.py
test_ingest.py
If I try to import core
in test_ingest.py
and run it, I get an ImportError
saying that the core
module can't be found. However, I can import core
in setup.py
without an issue. My IDE doesn't freak out, so why is this error occurring?