Esempio n. 1
0
 def addSkip(self, test: TestCase, reason: str) -> None:
     TestResult.addSkip(self, test, reason)
     self.stream.writeln(
         "** Skipping {}: {}".
         format(  # type: ignore[attr-defined] # https://github.com/python/typeshed/issues/3139
             test.id(), reason))
     self.stream.flush()