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
{{ message }}
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.
The create_test_user() function ends up being called during test discovery, not test runs, as it loads dependencies and variables.
This function performs a web request which can fail for a number of reasons, and causes test discovery to fail as well.
Additional context
We can use fixtures to load the client at test run time
The text was updated successfully, but these errors were encountered:
Describe what should be investigated or refactored
Currently e2e will cause pytest test discovery to fail. This is because some of the modules cause an API request during the dependency discovery.
Links to any relevant code
The
create_test_user()
function ends up being called during test discovery, not test runs, as it loads dependencies and variables.This function performs a web request which can fail for a number of reasons, and causes test discovery to fail as well.
Additional context
We can use fixtures to load the client at test run time
The text was updated successfully, but these errors were encountered: