(tmpdir)
| 60 | |
| 61 | @xfailif_windows # pragma: win32 no cover |
| 62 | def test_healthy_system_node(tmpdir): |
| 63 | tmpdir.join('package.json').write('{"name": "t", "version": "1.0.0"}') |
| 64 | |
| 65 | prefix = Prefix(str(tmpdir)) |
| 66 | node.install_environment(prefix, 'system', ()) |
| 67 | assert node.health_check(prefix, 'system') is None |
| 68 | |
| 69 | |
| 70 | @xfailif_windows # pragma: win32 no cover |
nothing calls this directly
no test coverage detected