(self)
| 267 | [('match', False), ('matchfile1', False), ('matchfile2', False)]) |
| 268 | |
| 269 | def test_failfast(self): |
| 270 | for opt in '-G', '--failfast': |
| 271 | with self.subTest(opt=opt): |
| 272 | ns = self.parse_args([opt, '-v']) |
| 273 | self.assertTrue(ns.failfast) |
| 274 | ns = self.parse_args([opt, '-W']) |
| 275 | self.assertTrue(ns.failfast) |
| 276 | self.checkError([opt], '-G/--failfast needs either -v or -W') |
| 277 | |
| 278 | def test_use(self): |
| 279 | for opt in '-u', '--use': |
nothing calls this directly
no test coverage detected