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
In version 6.0.2, the 'run' function for class 'test' in the setup.py file contains the line sys.path.insert(0, 'tests/lib') which fails when running the python setup.py test command as this path no longer exists in 6.0.2.
As a fix that line would need to be updated to sys.path.insert(0, 'tests/legacy_tests') to conform with the file structure in 6.0.2.
The text was updated successfully, but these errors were encountered:
In version 6.0.2, the 'run' function for class 'test' in the setup.py file contains the line
sys.path.insert(0, 'tests/lib')
which fails when running thepython setup.py test
command as this path no longer exists in 6.0.2.As a fix that line would need to be updated to
sys.path.insert(0, 'tests/legacy_tests')
to conform with the file structure in 6.0.2.The text was updated successfully, but these errors were encountered: