Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
Aske-Rosted committed May 28, 2024
1 parent de7e10b commit 7baa60d
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions tests/utilities/test_dataset_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,22 +269,3 @@ def test_dataset_config_files(backend: str) -> None:
)
== 0
)


@pytest.mark.order(6)
@pytest.mark.parametrize("backend", ["sqlite"])
def test_multiple_dataset_config_dict_selection(backend: str) -> None:
"""Test constructing Dataset with multiple data paths."""
# Arrange
config_path = CONFIG_PATHS[backend]

# Single dataset
config = DatasetConfig.load(config_path)
dataset = Dataset.from_config(config)
# Construct multiple datasets
config_ensemble = DatasetConfig.load(config_path)
config_ensemble.path = [config_ensemble.path, config_ensemble.path]

ensemble_dataset = Dataset.from_config(config)

assert len(dataset) * 2 == len(ensemble_dataset)

0 comments on commit 7baa60d

Please sign in to comment.