You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Using line from utils import FileUtils
in naughty_string_validator.py breaks the code in python version 3 but tests keep on passing in tox environment py35, py36. py37,py38
venv3/lib/python3.7/site-packages/naughty_string_validator/naughty_string_validator.py", line 3, in <module>
from utils import FileUtils
ModuleNotFoundError: No module named 'utils'
Expected behavior
Tests should fail for tox environment py35, py36. py37,py38
Need to investigate and modify tests so that it catches such import failure erros in specific tox environments
The text was updated successfully, but these errors were encountered:
Describe the bug
Using line
from utils import FileUtils
in naughty_string_validator.py breaks the code in python version 3 but tests keep on passing in tox environment py35, py36. py37,py38
Expected behavior
Tests should fail for tox environment py35, py36. py37,py38
Need to investigate and modify tests so that it catches such import failure erros in specific tox environments
The text was updated successfully, but these errors were encountered: