Skip to content

Commit 725c912

Browse files
committed
Skip test on windows
1 parent d4f9609 commit 725c912

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_mutations.py

Lines changed: 4 additions & 0 deletions
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)