Skip to content

Commit

Permalink
Skip loading prostate and leukemia big datasets due to issue #118
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipMay committed Dec 22, 2023
1 parent 9b7bf01 commit 0f7b908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def test_load_colon_compare_original():
assert_almost_equal(result[1].to_numpy(), ori_result[1].to_numpy())


@pytest.mark.skip(reason="see https://github.com/telekom/mltb2/issues/118")
def test_load_prostate():
result = load_prostate()
assert result is not None
Expand All @@ -56,6 +57,7 @@ def test_load_prostate():
assert result[1].shape == (102, 6033)


@pytest.mark.skip(reason="see https://github.com/telekom/mltb2/issues/118")
def test_load_prostate_compare_original():
result = load_prostate()
ori_result = load_prostate_data()
Expand All @@ -65,7 +67,6 @@ def test_load_prostate_compare_original():
assert_almost_equal(result[1].to_numpy(), ori_result[1].to_numpy())


@pytest.mark.skip(reason="see https://github.com/telekom/mltb2/issues/118")
def test_load_leukemia_big():
result = load_leukemia_big()
assert result is not None
Expand All @@ -77,7 +78,6 @@ def test_load_leukemia_big():
assert result[1].shape == (72, 7128)


@pytest.mark.skip(reason="see https://github.com/telekom/mltb2/issues/118")
def test_load_leukemia_big_compare_original():
result = load_leukemia_big()
ori_result = load_leukemia_data()
Expand Down

0 comments on commit 0f7b908

Please sign in to comment.