(self)
| 672 | self.assertEqual(exitcode, -signal.SIGTERM) |
| 673 | |
| 674 | def test_cpu_count(self): |
| 675 | try: |
| 676 | cpus = multiprocessing.cpu_count() |
| 677 | except NotImplementedError: |
| 678 | cpus = 1 |
| 679 | self.assertIsInstance(cpus, int) |
| 680 | self.assertGreaterEqual(cpus, 1) |
| 681 | |
| 682 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 683 | def test_active_children(self): |
nothing calls this directly
no test coverage detected