MCPcopy Create free account
hub / github.com/EasyIME/PIME / run

Method run

python/python3/tornado/test/runtests.py:67–78  ·  view source on GitHub ↗
(self, test)

Source from the content-addressed store, hash-verified

65 super().__init__(*args, **kwargs)
66
67 def run(self, test):
68 result = super().run(test)
69 if result.skipped:
70 skip_reasons = set(reason for (test, reason) in result.skipped)
71 self.stream.write( # type: ignore
72 textwrap.fill(
73 "Some tests were skipped because: %s"
74 % ", ".join(sorted(skip_reasons))
75 )
76 )
77 self.stream.write("\n") # type: ignore
78 return result
79
80 return TornadoTextTestRunner
81

Callers 10

test_other_returnMethod · 0.45
test_set_up_tear_downMethod · 0.45
test_multi_processMethod · 0.45
test_destructor_logMethod · 0.45
run_subprocMethod · 0.45
innerMethod · 0.45

Calls 3

fillMethod · 0.80
joinMethod · 0.80
writeMethod · 0.45

Tested by

no test coverage detected