Catch KeyboardInterrupt and show those tests we did manage to run.
Cat's Eye Technologies
11 years ago
26 | 26 |
* In `--verbose` mode, `py-falderal` will issue warnings about any test that
|
27 | 27 |
has been run twice (i.e. more than run on identical test body text and
|
28 | 28 |
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.
|
29 | 32 |
|
30 | 33 |
Version 0.8 "Ukranian Village" (current released version):
|
31 | 34 |
|
131 | 131 |
having both kinds of expectations would allow non-deterministic combinations
|
132 | 132 |
of the two to be matched.)
|
133 | 133 |
|
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 | |
|
140 | 134 |
### Split InterveningMarkdown blocks to make nice test descriptions
|
141 | 135 |
|
142 | 136 |
For example, if we have
|
98 | 98 |
# run tests
|
99 | 99 |
results = []
|
100 | 100 |
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
|
113 | 118 |
|
114 | 119 |
if options.verbose:
|
115 | 120 |
for key in dup_check:
|
|
123 | 128 |
result.report()
|
124 | 129 |
num_results = len(results)
|
125 | 130 |
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 |
|
126 | 136 |
print '--------------------------------'
|
127 | 137 |
print 'Total test runs: %d, failures: %d' % (num_results, num_failures)
|
128 | 138 |
print '--------------------------------'
|