Skip to content

Commit

Permalink
remove failing (dummy)-test
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-huber committed Aug 18, 2023
1 parent 4e7d641 commit 32f11ab
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/test_validation_and_test_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,3 @@ def test_select_spectra_belonging_to_inchikey(sample_spectra):
result = select_spectra_belonging_to_inchikey(sample_spectra, inchikeys)
assert len(result) == 3
assert result[0].get("inchikey") == 14 * "A"


def test_split_spectra_in_random_inchikey_sets(sample_spectra):
# TODO: this is still a dummy test mostly
val, test, train = split_spectra_in_random_inchikey_sets(sample_spectra, 2)
assert len(val) == 1
assert len(test) == 1
assert len(train) == 2

0 comments on commit 32f11ab

Please sign in to comment.