From 60d221786945e92caaa452f8af7e18fa9ccec8cb Mon Sep 17 00:00:00 2001 From: Volodymyr Savchenko Date: Thu, 16 Dec 2021 19:20:12 +0100 Subject: [PATCH] accidentially reversed the windows condition --- astroquery/heasarc/tests/test_heasarc_remote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astroquery/heasarc/tests/test_heasarc_remote.py b/astroquery/heasarc/tests/test_heasarc_remote.py index 049e966e90..011bcdb5ed 100644 --- a/astroquery/heasarc/tests/test_heasarc_remote.py +++ b/astroquery/heasarc/tests/test_heasarc_remote.py @@ -10,8 +10,8 @@ from .parametrization import parametrization_local_save_remote, patch_get, MockResponse -if not sys.platform.startswith("win"): - pytest.skip("skipping windows-only tests", allow_module_level=True) +if sys.platform.startswith("win"): + pytest.skip("skipping tests on windows", allow_module_level=True) @parametrization_local_save_remote