File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -288,6 +288,7 @@ def test_get_values_nocombine_burn_keyword(self):
288
288
def test_len (self ):
289
289
assert len (self .mtrace ) == self .draws
290
290
291
+ @pytest .mark .xfail (condition = (theano .config .floatX == "float32" ), reason = "Fails on float32" )
291
292
def test_dtypes (self ):
292
293
for varname in self .test_point .keys ():
293
294
assert self .expected [0 ][varname ].dtype == \
@@ -492,6 +493,7 @@ def test_chain_length(self):
492
493
assert self .mtrace0 .nchains == self .mtrace1 .nchains
493
494
assert len (self .mtrace0 ) == len (self .mtrace1 )
494
495
496
+ @pytest .mark .xfail (condition = (theano .config .floatX == "float32" ), reason = "Fails on float32" )
495
497
def test_dtype (self ):
496
498
for varname in self .test_point .keys ():
497
499
assert self .mtrace0 .get_values (varname , chains = 0 ).dtype == \
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ class TestSQlite0dSampling(bf.SamplingTestCase):
15
15
shape = ()
16
16
17
17
18
+ @pytest .mark .xfail (condition = (theano .config .floatX == "float32" ), reason = "Fails on float32" )
18
19
class TestSQlite1dSampling (bf .SamplingTestCase ):
19
20
backend = sqlite .SQLite
20
21
name = DBNAME
@@ -35,12 +36,14 @@ class TestSQLite0dSelection(bf.SelectionTestCase):
35
36
shape = ()
36
37
37
38
39
+ @pytest .mark .xfail (condition = (theano .config .floatX == "float32" ), reason = "Fails on float32" )
38
40
class TestSQLite1dSelection (bf .SelectionTestCase ):
39
41
backend = sqlite .SQLite
40
42
name = DBNAME
41
43
shape = 2
42
44
43
45
46
+ @pytest .mark .xfail (condition = (theano .config .floatX == "float32" ), reason = "Fails on float32" )
44
47
class TestSQLite2dSelection (bf .SelectionTestCase ):
45
48
backend = sqlite .SQLite
46
49
name = DBNAME
You can’t perform that action at this time.
0 commit comments