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
When running the test find_missing_modules.py, it will fail if a new module is added locally while an older version of CanvasAPI is installed in the path that doesn't have this. This is because the local path has the lower priority. I don't think this will be a problem with Github action
To Reproduce
Steps to reproduce the behavior:
Install a version of CanvasAPI globally or in the virtual environment
Add a new module, also import it in another module as required.
Attempt to run the scripts/find_missing_modules.py
Script should pass if done correctly. It fails. If the global canvasapi is removed this test does pass.
Expected behavior
The local canvasapi should always be preferred by this test
Describe the bug
When running the test
find_missing_modules.py
, it will fail if a new module is added locally while an older version of CanvasAPI is installed in the path that doesn't have this. This is because the local path has the lower priority. I don't think this will be a problem with Github actionTo Reproduce
Steps to reproduce the behavior:
scripts/find_missing_modules.py
Script should pass if done correctly. It fails. If the global canvasapi is removed this test does pass.
Expected behavior
The local
canvasapi
should always be preferred by this testsys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
The text was updated successfully, but these errors were encountered: