Skip to content

Commit d62df47

Browse files
Skip potentially problematic test on windoes
1 parent 7affc4d commit d62df47

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/test_cpython_interface.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55

66
from vcztools import _vcztools
77

8-
pytestmark = pytest.mark.skipif(
9-
sys.platform == "win32", reason="FIXME unexplained error on windows"
10-
)
118

129
FIXED_FIELD_NAMES = ["chrom", "pos", "id", "qual", "ref", "alt", "filter"]
1310

@@ -84,6 +81,7 @@ def example_encoder(num_variants=1, num_samples=0, add_info=True):
8481
return encoder
8582

8683

84+
@pytest.mark.skipif(sys.platform == "win32", reason="Broken on Windows")
8785
class TestPrintState:
8886
def test_nomimal_case(self, tmp_path):
8987
encoder = example_encoder()

0 commit comments

Comments
 (0)