Skip to content

Commit 5b3cbd8

Browse files
committed
TST: fix test skip for windows
1 parent c597da6 commit 5b3cbd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/eso/tests/test_eso.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def test_download(monkeypatch, tmp_path):
143143
assert downloaded_files[0] == filename
144144

145145

146-
@pytest.mark.skipif(sys.platform == "win32", reason="gunzip not available on Windows")
146+
@pytest.mark.skipif(sys.platform.startswith("win"), reason="gunzip not available on Windows")
147147
def test_unzip(tmp_path):
148148
eso = Eso()
149149
filename = os.path.join(DATA_DIR, 'testfile.fits.Z')

0 commit comments

Comments
 (0)