Skip to content

Commit a25365e

Browse files
committed
Disable benchmark job until pytest-benchmark is added
The benchmark job was failing because pytest-benchmark is not in requirements.txt. Rather than add another dependency for benchmarking tests that don't exist yet, disable the job with a placeholder message. Benchmarking can be enabled later when actual benchmark tests are implemented.
1 parent 57a0897 commit a25365e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,6 @@ jobs:
142142
143143
- name: Run benchmarks
144144
run: |
145-
python -m pytest tests/ -v -k benchmark --benchmark-only
145+
# pytest-benchmark not installed, skip for now
146+
echo "Benchmarks would run here with pytest-benchmark"
146147
continue-on-error: true

0 commit comments

Comments
 (0)