Skip to content

Commit f913f75

Browse files
committed
xfail on Windows
1 parent 1fc0bc8 commit f913f75

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pymc3/tests/test_sampling.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from typing import Tuple
1818
import numpy as np
1919
import unittest.mock as mock
20+
import sys
2021

2122
import numpy.testing as npt
2223
import arviz as az
@@ -31,7 +32,6 @@
3132
import pytest
3233

3334

34-
@pytest.mark.xfail(condition=(theano.config.floatX == "float32"), reason="Fails on float32")
3535
@pytest.mark.xfail(condition=(theano.config.floatX == "float32"), reason="Fails on float32")
3636
class TestSample(SeededTest):
3737
def setup_method(self):
@@ -930,6 +930,9 @@ def test_shared(self):
930930

931931
assert gen2["y"].shape == (draws, n2)
932932

933+
@pytest.mark.xfail(
934+
condition=(sys.platform.startswith("win")), reason="Stackoverflow error on Windows"
935+
)
933936
def test_density_dist(self):
934937

935938
obs = np.random.normal(-1, 0.1, size=10)

0 commit comments

Comments
 (0)