(self)
| 366 | self.checkError([opt, '6:foo'], 'invalid huntrleaks value') |
| 367 | |
| 368 | def test_multiprocess(self): |
| 369 | for opt in '-j', '--multiprocess': |
| 370 | with self.subTest(opt=opt): |
| 371 | ns = self.parse_args([opt, '2']) |
| 372 | self.assertEqual(ns.use_mp, 2) |
| 373 | self.checkError([opt], 'expected one argument') |
| 374 | self.checkError([opt, 'foo'], 'invalid int value') |
| 375 | |
| 376 | def test_coverage_sequential(self): |
| 377 | for opt in '-T', '--coverage': |
nothing calls this directly
no test coverage detected