Brand new to python and can't manage to get my import resolved when I debug my test within vscode.
Project structure:
a/b/c/d/service/functions/s3_proxy.py
a/b/c/d/service/functions/__init__.py
a/b/c/d/service/tests/test_s3_proxy.py
a/b/c/d/service/tests/__init__.py
test_s3_proxy.py
from functions import s3_proxy
I get an error that funcitons module isn't found.
I tried these things:
- I tried putting an
__init__.py
in service - I tried
from ..functions import s3_proxy