Lines Matching full:skipped
65 SKIPPED = auto() variable in TestStatus
79 skipped : int - the number of tests that have skipped
89 self.skipped = 0
95 ('crashed', self.crashed), ('skipped', self.skipped),
105 self.skipped)
120 self.skipped += counts.skipped
137 # We have only skipped tests.
138 return TestStatus.SKIPPED
146 elif status == TestStatus.SKIPPED:
147 self.skipped += 1
433 test.status = TestStatus.SKIPPED
532 if test.status == TestStatus.SKIPPED:
533 return stdout.yellow('[SKIPPED] ') + test.name
572 skipped, and red if the test fails or crashes. Summary line contains
577 "Testing complete. Passed: 2, Failed: 0, Crashed: 0, Skipped: 0,
584 elif test.status in (TestStatus.SKIPPED, TestStatus.NO_TESTS):