(self)
| 81 | |
| 82 | class TestGypWindows(unittest.TestCase): |
| 83 | def setUp(self) -> None: |
| 84 | if sys.platform != "win32": |
| 85 | self.skipTest("Windows-only test") |
| 86 | shutil.rmtree(os.path.join(fixture_dir, "out"), ignore_errors=True) |
| 87 | |
| 88 | def test_msvs(self) -> None: |
| 89 | rc = gyp.main(["-f", "msvs", "--depth", fixture_dir, gyp_file]) |