Skip to content

Commit

Permalink
fix(fill,genindex): don't try to load eels_resolutions.json as a fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
danceratopz committed Oct 6, 2024
1 parent c4bdeef commit 5c13d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/gen_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def generate_fixtures_index(

test_cases: List[TestCaseIndexFile] = []
for file in input_path.rglob("*.json"):
if file.name == "index.json":
if file.name == "index.json" or ".meta" in file.parts:
continue
if any(fixture in str(file) for fixture in fixtures_to_skip):
rich.print(f"Skipping '{file}'")
Expand Down

0 comments on commit 5c13d7f

Please sign in to comment.