Skip to content

Commit 2be485d

Browse files
committed
xfail -> skipif
1 parent f913f75 commit 2be485d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pymc3/tests/test_sampling.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -930,9 +930,7 @@ 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-
)
933+
@pytest.mark.skipif(sys.platform.startswith("win"), reason="Stackoverflow error on Windows")
936934
def test_density_dist(self):
937935

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

0 commit comments

Comments
 (0)