(self)
| 4425 | self.assertGreater(cpus, 0) |
| 4426 | |
| 4427 | def test_cpu_count(self): |
| 4428 | cpus = os.cpu_count() |
| 4429 | self.check_cpu_count(cpus) |
| 4430 | |
| 4431 | def test_process_cpu_count(self): |
| 4432 | cpus = os.process_cpu_count() |
nothing calls this directly
no test coverage detected