()
| 9 | |
| 10 | @pytest.fixture(autouse=True) |
| 11 | def _reset_ide_os(): |
| 12 | yield |
| 13 | from pydevd_file_utils import set_ide_os |
| 14 | |
| 15 | set_ide_os("WINDOWS" if sys.platform == "win32" else "UNIX") |
| 16 | |
| 17 | |
| 18 | @pytest.mark.skipif(sys.platform != "win32", reason="Windows-only test.") |
nothing calls this directly
no test coverage detected