-
Notifications
You must be signed in to change notification settings - Fork 18
/
run_tests.py
executable file
·63 lines (60 loc) · 1.76 KB
/
run_tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#! /usr/bin/python
import optparse
import testtools.runner
import testtools.util
import testtools.tests
from unittest import installHandler
def main():
installHandler()
option_parser = optparse.OptionParser(
usage="%prog [options] [filenames]",
description="pyjaco unittests script."
)
option_parser.add_option(
"-a",
"--run-all",
action="store_true",
dest="run_all",
default=False,
help="run all tests (including the known-to-fail)"
)
option_parser.add_option(
"-x",
"--no-error",
action="store_true",
dest="no_error",
default=False,
help="ignores error (don't display them after tests)"
)
option_parser.add_option(
"-f",
"--only-failing",
action="store_true",
dest="only_failing",
default=False,
help="run only failing tests (to check for improvements)"
)
options, args = option_parser.parse_args()
runner = testtools.runner.Py2JsTestRunner(verbosity=2)
results = None
try:
if options.run_all:
results = runner.run(testtools.tests.ALL)
elif options.only_failing:
results = runner.run(testtools.tests.KNOWN_TO_FAIL)
elif args:
results = runner.run(testtools.tests.get_tests(args))
else:
results = runner.run(testtools.tests.NOT_KNOWN_TO_FAIL)
except KeyboardInterrupt:
pass
if not options.no_error and results and results.errors:
print
print "errors:"
print " (use -x to skip this part)"
for test, error in results.errors:
print
print "*", str(test), "*"
print error
if __name__ == "__main__":
main()