X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=test%2F__main__.py;h=26dfc57a8d4eb877d1e533707ee0aff7f99a0bb9;hb=a3b56774ac44ee53bdce648e57976b97bff2ba13;hp=6a8af8a538397216234283e7fe350f0eff912f65;hpb=6f90e0a65e6775b153e6abd320232421dd90ba6f;p=dunshire.git diff --git a/test/__main__.py b/test/__main__.py index 6a8af8a..26dfc57 100644 --- a/test/__main__.py +++ b/test/__main__.py @@ -3,4 +3,9 @@ An implementation of __main__() that allows us to "run this module." """ from test import build_suite, run_suite -run_suite(build_suite()) +result = run_suite(build_suite()) + +if result.wasSuccessful(): + exit(0) +else: + exit(1)