I am running a test suite with tox, and one of my local imports is performing fine in Python 3.7 but failing with Python 2.7.
I get the error:
ImportError while importing test module /home/myname/tests/myfolder/test_triad_2020_orgs.py
Traceback:
tests/myfolder/test_triad_2020_orgs.py:5: in <module>
from [testssibbling].myfolder.triad.triad_2020_orgs import Orgs
Import Error: No module named triad.triad_2020_orgs
Any ideas on why this could be? The file definitely exists. Is there a problem with the file name for 2.7 conventions?