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
Currently validation exits with a zero exit code if an exception occurs (e.g. connection reset by peer), potentially giving the false impression of a successful validation result.
__main__.py returns here. The returned int is ignored and the script completes normally.
I suggest __main__.py should instead call sys.exit(1) as it does in the case of validation errors.
I'm happy to submit a PR if you agree that this issue is worth addressing.
The text was updated successfully, but these errors were encountered:
Currently validation exits with a zero exit code if an exception occurs (e.g. connection reset by peer), potentially giving the false impression of a successful validation result.
__main__.py
returns here. The returnedint
is ignored and the script completes normally.I suggest
__main__.py
should instead callsys.exit(1)
as it does in the case of validation errors.I'm happy to submit a PR if you agree that this issue is worth addressing.
The text was updated successfully, but these errors were encountered: