From 904cb4f40c04977d9ed358411e576e610a1d118f Mon Sep 17 00:00:00 2001 From: Ben Jeffery Date: Tue, 25 Nov 2025 15:09:20 +0000 Subject: [PATCH] Reinstate tests --- python/tests/test_ibd.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/tests/test_ibd.py b/python/tests/test_ibd.py index 5e5c466a19..f67655fac9 100644 --- a/python/tests/test_ibd.py +++ b/python/tests/test_ibd.py @@ -100,7 +100,6 @@ def naive_ibd_all_pairs(ts, samples=None): class TestIbdDefinition: - @pytest.mark.skip("help") @pytest.mark.xfail() @pytest.mark.parametrize("ts", get_example_tree_sequences(custom_max=15)) def test_all_pairs(self, ts): @@ -113,7 +112,6 @@ def test_all_pairs(self, ts): ibd_def = naive_ibd_all_pairs(ts, samples=samples) assert_ibd_equal(ibd_lib, ibd_def) - @pytest.mark.skip("help") @pytest.mark.parametrize("ts", get_example_tree_sequences(custom_max=15)) def test_all_pairs_python_only(self, ts): samples = ts.samples()[:10] @@ -121,7 +119,6 @@ def test_all_pairs_python_only(self, ts): ibd_def = naive_ibd_all_pairs(ts, samples=samples) assert_ibd_equal(ibd_pylib, ibd_def) - @pytest.mark.skip("help") @pytest.mark.parametrize("N", [2, 5, 10]) @pytest.mark.parametrize("T", [2, 5, 10]) def test_wright_fisher_examples(self, N, T): @@ -137,7 +134,6 @@ def test_wright_fisher_examples(self, N, T): class TestIbdImplementations: - @pytest.mark.skip("help") @pytest.mark.xfail() @pytest.mark.parametrize("ts", get_example_tree_sequences(custom_max=15)) def test_all_pairs(self, ts):