Mercurial > hg > GlobalNeighbors
annotate tests/testall.py @ 0:5dba84370182
initial commit; half-working prototype
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Sat, 24 Jun 2017 12:03:39 -0700 | 
| parents | |
| children | 
| rev | line source | 
|---|---|
| 0 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 1 #!/usr/bin/env python | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 2 | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 3 """ | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 4 run all unit tests | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 5 """ | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 6 | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 7 import os | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 8 import sys | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 9 import unittest | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 10 | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 11 here = os.path.dirname(os.path.abspath(__file__)) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 12 | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 13 def main(args=sys.argv[1:]): | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 14 | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 15 results = unittest.TestResult() | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 16 suite = unittest.TestLoader().discover(here, 'test_*.py') | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 17 suite.run(results) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 18 n_errors = len(results.errors) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 19 n_failures = len(results.failures) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 20 print ("Run {} tests ({} failures; {} errors)".format(results.testsRun, | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 21 n_failures, | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 22 n_errors)) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 23 if results.wasSuccessful(): | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 24 print ("Success") | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 25 sys.exit(0) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 26 else: | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 27 # print failures and errors | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 28 for label, item in (('FAIL', results.failures), | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 29 ('ERROR', results.errors)): | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 30 if item: | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 31 print ("\n{}::\n".format(label)) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 32 for index, (i, message) in enumerate(item): | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 33 print ('{}) {}:'.format(index, str(i))) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 34 print (message) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 35 sys.exit(1) | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 36 | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 37 if __name__ == '__main__': | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 38 main() | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 39 | 
| 
5dba84370182
initial commit; half-working prototype
 Jeff Hammel <k0scist@gmail.com> parents: diff
changeset | 40 | 
