Skip to content

Commit

Permalink
ignore .pixi and miniforge3 in directory checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Nov 18, 2024
1 parent ef604d5 commit 735ae68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci_support/build_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def check_recipes_in_correct_dir(root_dir, correct_dir):
from pathlib import Path
for path in Path(root_dir).rglob('meta.yaml'):
path = path.absolute().relative_to(root_dir)
if path.parts[0] == 'build_artifacts':
if path.parts[0] in ('.pixi', 'build_artifacts', 'miniforge3'):
# ignore pkg_cache in build_artifacts
continue
if path.parts[0] != correct_dir and path.parts[0] != "broken-recipes":
Expand Down

0 comments on commit 735ae68

Please sign in to comment.