Skip to content

Commit

Permalink
fix: change index generation test
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ committed Oct 26, 2024
1 parent c45da1d commit f408159
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_release_index_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ def test_generate_release_indexes(test_release_version: str) -> None:

# Generate local index
test_index_path = Path("test_index")
shutil.rmtree(test_index_path)
if test_index_path.exists():
shutil.rmtree(test_index_path)

_generate_release_index(
release=test_release_version,
dataset_path="files",
Expand Down

0 comments on commit f408159

Please sign in to comment.