@@ -100,7 +100,6 @@ def naive_ibd_all_pairs(ts, samples=None):
100100
101101
102102class TestIbdDefinition :
103- @pytest .mark .skip ("help" )
104103 @pytest .mark .xfail ()
105104 @pytest .mark .parametrize ("ts" , get_example_tree_sequences (custom_max = 15 ))
106105 def test_all_pairs (self , ts ):
@@ -113,15 +112,13 @@ def test_all_pairs(self, ts):
113112 ibd_def = naive_ibd_all_pairs (ts , samples = samples )
114113 assert_ibd_equal (ibd_lib , ibd_def )
115114
116- @pytest .mark .skip ("help" )
117115 @pytest .mark .parametrize ("ts" , get_example_tree_sequences (custom_max = 15 ))
118116 def test_all_pairs_python_only (self , ts ):
119117 samples = ts .samples ()[:10 ]
120118 ibd_pylib = ibd_segments (ts , within = samples , squash = True , compare_lib = False )
121119 ibd_def = naive_ibd_all_pairs (ts , samples = samples )
122120 assert_ibd_equal (ibd_pylib , ibd_def )
123121
124- @pytest .mark .skip ("help" )
125122 @pytest .mark .parametrize ("N" , [2 , 5 , 10 ])
126123 @pytest .mark .parametrize ("T" , [2 , 5 , 10 ])
127124 def test_wright_fisher_examples (self , N , T ):
@@ -137,7 +134,6 @@ def test_wright_fisher_examples(self, N, T):
137134
138135
139136class TestIbdImplementations :
140- @pytest .mark .skip ("help" )
141137 @pytest .mark .xfail ()
142138 @pytest .mark .parametrize ("ts" , get_example_tree_sequences (custom_max = 15 ))
143139 def test_all_pairs (self , ts ):
0 commit comments