git @ Cat's Eye Technologies Falderal / 13df0bb
Catch KeyboardInterrupt and show those tests we did manage to run. Cat's Eye Technologies 11 years ago
3 changed file(s) with 25 addition(s) and 18 deletion(s). Raw diff Collapse all Expand all
2626 * In `--verbose` mode, `py-falderal` will issue warnings about any test that
2727 has been run twice (i.e. more than run on identical test body text and
2828 implementation.)
29 * If `py-falderal` catches a `KeyboardInterrupt` exception while running tests,
30 it shows a report of all the tests that it did manage to run until that
31 point, and a warning message to the effect that not all tests were run.
2932
3033 Version 0.8 "Ukranian Village" (current released version):
3134
131131 having both kinds of expectations would allow non-deterministic combinations
132132 of the two to be matched.)
133133
134 ### catch KeyboardInterrupt, report on all results so far
135
136 When a test suite takes a long time to run, it would be very nice if
137 interrupting it with `^C` were to show a report of all the tests that did
138 manage to run, plus a count of how many were not run.
139
140134 ### Split InterveningMarkdown blocks to make nice test descriptions
141135
142136 For example, if we have
9898 # run tests
9999 results = []
100100 dup_check = {}
101 for test in tests:
102 if options.verbose:
103 print str(test)
104 these_results = test.run(options=options)
105 if options.verbose:
106 for result in these_results:
107 key = repr(test.body_block.text()) + repr(result.implementation)
108 location = "%s, line %d" % (
109 test.body_block.filename, test.body_block.line_num
110 )
111 dup_check.setdefault(key, []).append(location)
112 results += these_results
101 all_ran = False
102 try:
103 for test in tests:
104 if options.verbose:
105 print str(test)
106 these_results = test.run(options=options)
107 if options.verbose:
108 for result in these_results:
109 key = repr(test.body_block.text()) + repr(result.implementation)
110 location = "%s, line %d" % (
111 test.body_block.filename, test.body_block.line_num
112 )
113 dup_check.setdefault(key, []).append(location)
114 results += these_results
115 all_ran = True
116 except KeyboardInterrupt:
117 pass
113118
114119 if options.verbose:
115120 for key in dup_check:
123128 result.report()
124129 num_results = len(results)
125130 num_failures = len([x for x in results if not x.is_successful()])
131 if not all_ran:
132 print '**************************************************************'
133 print '** TESTING TERMINATED PREMATURELY -- NOT ALL TESTS WERE RUN **'
134 print '**************************************************************'
135
126136 print '--------------------------------'
127137 print 'Total test runs: %d, failures: %d' % (num_results, num_failures)
128138 print '--------------------------------'