()
| 13 | |
| 14 | |
| 15 | def test_cpu_count(): |
| 16 | count = cpu_count() |
| 17 | assert isinstance(count, int) |
| 18 | assert count <= os.cpu_count() |
| 19 | assert count >= 1 |
| 20 | |
| 21 | |
| 22 | @pytest.mark.parametrize("dirname", ["cpuacct,cpu", "cpu,cpuacct", None]) |
nothing calls this directly
no test coverage detected