]> gitweb.michael.orlitzky.com - dunshire.git/blob - test/__main__.py
Fix a pylint warning for a top-level variable name in test/__main__.py.
[dunshire.git] / test / __main__.py
1 #!/usr/bin/env python
2 """
3 An implementation of __main__() that allows us to "run this module."
4 """
5 from test import build_suite, run_suite
6
7 if run_suite(build_suite()).wasSuccessful():
8 exit(0)
9 else:
10 exit(1)