We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is_in_debug
Let fixture is_in_debug differentiate between "running from editor" and "running in debug mode (from editor)"
is_in_debug means "running from editor"
is_in_debug means "running in debug mode (from editor)"
Add is_in_editor fixture that means "running from editor" and update is_in_debug to mean "running in debug mode (from editor)"
is_in_editor
This will update the behavior of tests that use is_in_debug. Though, in both cases this will not evaluate to False when not run from the editor
False
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Let fixture
is_in_debug
differentiate between "running from editor" and "running in debug mode (from editor)"Current behavior
is_in_debug
means "running from editor"Expected behavior
is_in_debug
means "running in debug mode (from editor)"Solution
Add
is_in_editor
fixture that means "running from editor" and updateis_in_debug
to mean "running in debug mode (from editor)"Considerations
This will update the behavior of tests that use
is_in_debug
. Though, in both cases this will not evaluate toFalse
when not run from the editorThe text was updated successfully, but these errors were encountered: