mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
exit(1) if there was a failure or an error.
This commit is contained in:
@ -52,7 +52,11 @@ def main(args):
|
||||
descriptions=True,
|
||||
)
|
||||
testLoader = unittest.loader.defaultTestLoader
|
||||
testRunner.run(ts)
|
||||
result = testRunner.run(ts)
|
||||
if result.failures or result.errors:
|
||||
exit(1)
|
||||
else:
|
||||
exit(0)
|
||||
|
||||
|
||||
parser = argparse.ArgumentParser(
|
||||
|
Reference in New Issue
Block a user