Skip to content

Commit

Permalink
accidentially reversed the windows condition
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyrss committed Dec 16, 2021
1 parent c602f40 commit 60d2217
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions astroquery/heasarc/tests/test_heasarc_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 60d2217

Please sign in to comment.