Add returncode argument to pytest.exit
If the argument is not None, it'll raise a SystemExit exception to cleanly exit pytest.
This commit is contained in:
parent
0be84cd68b
commit
d7be039f1b
|
@ -57,9 +57,12 @@ class Exit(KeyboardInterrupt):
|
||||||
# exposed helper methods
|
# exposed helper methods
|
||||||
|
|
||||||
|
|
||||||
def exit(msg):
|
def exit(msg, returncode=None):
|
||||||
""" exit testing process as if KeyboardInterrupt was triggered. """
|
""" exit testing process as if KeyboardInterrupt was triggered. """
|
||||||
__tracebackhide__ = True
|
__tracebackhide__ = True
|
||||||
|
if returncode:
|
||||||
|
raise SystemExit(returncode)
|
||||||
|
else:
|
||||||
raise Exit(msg)
|
raise Exit(msg)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue