diff --git a/.buildkite/pipeline_pr.py b/.buildkite/pipeline_pr.py index efa8c56472b..e20b2ed7296 100755 --- a/.buildkite/pipeline_pr.py +++ b/.buildkite/pipeline_pr.py @@ -109,7 +109,9 @@ if any(x.parent.name == "tools" and "release" in x.name for x in changed_files): steps.append(release_grp) -if not changed_files or any(x.suffix == ".rs" for x in changed_files): +if not changed_files or any( + x.suffix in [".rs", ".toml", ".lock"] for x in changed_files +): steps.append(kani_grp) if run_all_tests(changed_files):