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
with expecting(prompts):
run("python -c 'raise Exception()'")
# other steps
When I run the script, the exception's non-zero exit code is suppressed and keeps going to the other steps.
When I run the script without expecting(prompts), the code exits like this, which is what I'd like:
I have a script that includes this:
When I run the script, the exception's non-zero exit code is suppressed and keeps going to the other steps.
When I run the script without expecting(prompts), the code exits like this, which is what I'd like:
I'd like the script to exit when errors occur instead of failing silently and continuing.
The text was updated successfully, but these errors were encountered: