Skip to content

Commit 3353e39

Browse files
committed
fix computing impacted
1 parent f564b01 commit 3353e39

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

Diff for: utils/scripts/compute_impacted_scenario.py

+2-9
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,7 @@ def main():
121121
else:
122122
scenarios_groups.add(ScenarioGroup.ALL.value)
123123

124-
elif file in (
125-
".dockerignore",
126-
".gitignore",
127-
".gitlab-ci.yml",
128-
".shellcheck",
129-
".shellcheckrc",
130-
"CHANGELOG.md",
131-
):
124+
elif file in (".dockerignore", ".gitignore", ".gitlab-ci.yml", "CHANGELOG.md",):
132125
# nothing to do
133126
pass
134127

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

149-
elif file in ("scenario_groups.yml", "shell.nix"):
142+
elif file in ("scenario_groups.yml", "shell.nix", "flake.nix", "flake.lock", "treefmt.nix"):
150143
# nothing to do
151144
pass
152145

0 commit comments

Comments
 (0)