MCPcopy
hub / github.com/tornadoweb/tornado / run

Method run

tornado/test/runtests.py:80–91  ·  view source on GitHub ↗
(self, test)

Source from the content-addressed store, hash-verified

78 super().__init__(*args, **kwargs)
79
80 def run(self, test):
81 result = super().run(test)
82 if result.skipped:
83 skip_reasons = {reason for (test, reason) in result.skipped}
84 self.stream.write( # type: ignore
85 textwrap.fill(
86 "Some tests were skipped because: %s"
87 % ", ".join(sorted(skip_reasons))
88 )
89 )
90 self.stream.write("\n") # type: ignore
91 return result
92
93 return TornadoTextTestRunner
94

Callers 12

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

Calls 2

joinMethod · 0.80
writeMethod · 0.45

Tested by

no test coverage detected