Test skipping tests in status file for a specific variant.
(self)
| 315 | '<===Stopping stuff\n') |
| 316 | |
| 317 | def testSkips(self): |
| 318 | """Test skipping tests in status file for a specific variant.""" |
| 319 | result = self.run_tests( |
| 320 | '--progress=verbose', |
| 321 | '--variants=nooptimization', |
| 322 | 'sweet/strawberries', |
| 323 | infra_staging=False, |
| 324 | ) |
| 325 | result.stdout_includes('0 tests ran') |
| 326 | result.has_returncode(2) |
| 327 | |
| 328 | def testRunSkips(self): |
| 329 | """Inverse the above. Test parameter to keep running skipped tests.""" |
nothing calls this directly
no test coverage detected