File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 33
44import math
55import pickle
6+ import sys
67from operator import add , floordiv , mul , sub
78from pprint import pprint
89
@@ -361,6 +362,11 @@ def test_pruning_multiouts_not_override_intermediates1():
361362 assert pipeline (inputs , ["asked" ]) == filtdict (exp , "asked" )
362363
363364
365+ @pytest .mark .xfail (
366+ sys .version_info < (3 , 6 ),
367+ reason = "PY3.5- have unstable dicts."
368+ "E.g. https://travis-ci.org/ankostis/graphkit/jobs/595841023" ,
369+ )
364370def test_pruning_multiouts_not_override_intermediates2 ():
365371 # Test #25: v.1.2.4 overrides intermediate data when a previous operation
366372 # must run for its other outputs (outputs asked or not)
@@ -583,6 +589,11 @@ def increment(box):
583589 assert graph ({"box" : [0 ], "a" : None })["box" ] == [1 , 1 , 2 ]
584590
585591
592+ @pytest .mark .xfail (
593+ sys .version_info < (3 , 6 ),
594+ reason = "PY3.5- have unstable dicts."
595+ "E.g. https://travis-ci.org/ankostis/graphkit/jobs/595793872" ,
596+ )
586597def test_optional_per_function_with_same_output ():
587598 # Test that the same need can be both optional and not on different operations.
588599 #
You can’t perform that action at this time.
0 commit comments