Skip to content

Commit 52d3b8d

Browse files
benjefferymergify[bot]
authored andcommittedMar 21, 2025·
Skip test on windows
1 parent 53139b3 commit 52d3b8d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎tests/test_mutations.py

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import itertools
2727
import json
2828
import struct
29+
import sys
2930
from typing import Any
3031

3132
import numpy as np
@@ -366,6 +367,9 @@ def test_SMM(self):
366367
self.validate_model(model)
367368
self.validate_stationary(model)
368369

370+
@pytest.mark.skipif(
371+
sys.platform.startswith("win"), reason="Windows BLAS issue #2349"
372+
)
369373
@pytest.mark.parametrize(
370374
"p, m, lo, hi",
371375
[

0 commit comments

Comments
 (0)
Please sign in to comment.