Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions python/tests/test_ibd.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -113,15 +112,13 @@ 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]
ibd_pylib = ibd_segments(ts, within=samples, squash=True, compare_lib=False)
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):
Expand All @@ -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):
Expand Down
Loading