Skip to content

Commit

Permalink
Removing texas dataset from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yolaj-nhs committed Feb 6, 2024
1 parent d53086b commit 3a01168
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/test_loaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"medical-mnist-ab-v-br-500",
"medical-mnist-all-100",
"indian liver",
"texas hospitals 10",
"synth-ae",
"synth-ae-small",
"nursery",
Expand Down Expand Up @@ -81,10 +80,6 @@ def test_data_absent():
with pytest.raises(DataNotAvailable):
_, _ = loaders.get_data_sklearn("indian liver")

# texas
with pytest.raises(DataNotAvailable):
_, _ = loaders.get_data_sklearn("texas hospitals 10")

# synth-ae
with pytest.raises(DataNotAvailable):
_, _ = loaders.get_data_sklearn("synth-ae")
Expand Down Expand Up @@ -167,14 +162,6 @@ def test_indian_liver():
assert x_df.shape == (11, 10), f"x_df shape is {x_df.shape}"
assert y_df.shape == (11, 1)


def test_texas():
"""The texas dataset has quite restrictive licenses arounbd copying.
Therefore it is omitted from the CI testing.
This code was fully tested during the GRAIMatter project.
"""


def test_synth_ae():
"""Tests different versions of the synthetic A&E dataset."""
x_df, y_df = loaders.get_data_sklearn("synth-ae", DATA_FOLDER)
Expand Down

0 comments on commit 3a01168

Please sign in to comment.