Skip to content

Commit

Permalink
fix computing impacted
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelchcki committed Jun 26, 2024
1 parent f564b01 commit 3353e39
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions utils/scripts/compute_impacted_scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,7 @@ def main():
else:
scenarios_groups.add(ScenarioGroup.ALL.value)

elif file in (
".dockerignore",
".gitignore",
".gitlab-ci.yml",
".shellcheck",
".shellcheckrc",
"CHANGELOG.md",
):
elif file in (".dockerignore", ".gitignore", ".gitlab-ci.yml", "CHANGELOG.md",):
# nothing to do
pass

Expand All @@ -146,7 +139,7 @@ def main():
elif file in ("requirements.txt", "run.sh"):
scenarios_groups.add(ScenarioGroup.ALL.value)

elif file in ("scenario_groups.yml", "shell.nix"):
elif file in ("scenario_groups.yml", "shell.nix", "flake.nix", "flake.lock", "treefmt.nix"):
# nothing to do
pass

Expand Down

0 comments on commit 3353e39

Please sign in to comment.