Skip to content

Commit

Permalink
Skip failing Windows test until we can fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
SolarDrew committed Feb 12, 2025
1 parent de33ac3 commit c0046b0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dkist/data/tests/test_sample.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import platform
from unittest.mock import call

import pytest
Expand Down Expand Up @@ -29,6 +30,7 @@ def test_module_getattr(mocker, attrname):
mock.assert_has_calls([call(attrname), call().__getitem__(0)])


@pytest.mark.skipif(platform.system() == "Windows", reason="Internet not properly disabled on Windows")
@pytest.mark.internet_off
def test_fail(tmp_sample_dir):
"""
Expand Down

0 comments on commit c0046b0

Please sign in to comment.