Changeset 988 for vendor/current/selftest/format-subunit
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/selftest/format-subunit
r740 r988 10 10 import sys 11 11 12 sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../lib/subunit/python")) 13 sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../lib/testtools")) 12 sys.path.insert(0, "bin/python") 14 13 15 14 import subunithelper … … 18 17 parser.add_option("--verbose", action="store_true", 19 18 help="Be verbose") 20 parser.add_option("--immediate", action="store_true", 19 parser.add_option("--immediate", action="store_true", 21 20 help="Show failures immediately, don't wait until test run has finished") 22 21 parser.add_option("--prefix", type="string", default=".", … … 26 25 27 26 def handle_sigint(sig, stack): 28 sys.exit(0) 27 sys.exit(0) 28 29 29 signal.signal(signal.SIGINT, handle_sigint) 30 30
Note:
See TracChangeset
for help on using the changeset viewer.