-
Notifications
You must be signed in to change notification settings - Fork 17
/
run_tests.py
executable file
·50 lines (47 loc) · 1.36 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
#! /usr/bin/python
import optparse
import testtools.runner
import testtools.util
import testtools.tests
def main():
option_parser = optparse.OptionParser(
usage="%prog [options] [filenames]",
description="py2rb 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)"
)
options, args = option_parser.parse_args()
runner = testtools.runner.Py2RbTestRunner(verbosity=2)
results = None
if options.run_all:
results = runner.run(testtools.tests.ALL)
elif args:
results = runner.run(testtools.tests.get_tests(args))
else:
results = runner.run(testtools.tests.NOT_KNOWN_TO_FAIL)
if not options.no_error 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 results.errors or results.failures:
exit(1)
if __name__ == "__main__":
main()