You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/migration-ci.yml
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ jobs:
49
49
"${{ github.event.pull_request.head.sha }}" \
50
50
| tee "$RUNNER_TEMP/changed-files.txt"
51
51
52
-
if grep -Eq '^(\.crane/|cmd/|internal/|pkg/|go\.mod$|go\.sum$|pyproject\.toml$|src/|tests/benchmarks/|tests/unit/test_crane_score\.py$)' "$RUNNER_TEMP/changed-files.txt"; then
52
+
if grep -Eq '^(\.crane/|\.github/workflows/migration-ci\.yml$|cmd/|internal/|pkg/|go\.mod$|go\.sum$|pyproject\.toml$|scripts/ci/|src/|tests/benchmarks/|tests/unit/test_crane_score\.py$)' "$RUNNER_TEMP/changed-files.txt"; then
53
53
echo "should-run=true" >> "$GITHUB_OUTPUT"
54
54
else
55
55
echo "should-run=false" >> "$GITHUB_OUTPUT"
@@ -137,11 +137,6 @@ jobs:
137
137
- name: Build Go CLI
138
138
run: go build -o "$RUNNER_TEMP/apm-go" ./cmd/apm
139
139
140
-
- name: Run Python performance guards
141
-
run: |
142
-
uv run pytest tests/benchmarks/test_scaling_guards.py -v
143
-
uv run pytest tests/benchmarks -v --tb=short -m benchmark
0 commit comments