File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 17
17
from typing import Tuple
18
18
import numpy as np
19
19
import unittest .mock as mock
20
+ import sys
20
21
21
22
import numpy .testing as npt
22
23
import arviz as az
31
32
import pytest
32
33
33
34
34
- @pytest .mark .xfail (condition = (theano .config .floatX == "float32" ), reason = "Fails on float32" )
35
35
@pytest .mark .xfail (condition = (theano .config .floatX == "float32" ), reason = "Fails on float32" )
36
36
class TestSample (SeededTest ):
37
37
def setup_method (self ):
@@ -930,6 +930,9 @@ def test_shared(self):
930
930
931
931
assert gen2 ["y" ].shape == (draws , n2 )
932
932
933
+ @pytest .mark .xfail (
934
+ condition = (sys .platform .startswith ("win" )), reason = "Stackoverflow error on Windows"
935
+ )
933
936
def test_density_dist (self ):
934
937
935
938
obs = np .random .normal (- 1 , 0.1 , size = 10 )
You can’t perform that action at this time.
0 commit comments