Skip to content

Commit 1761509

Browse files
sidmohan0claude
andcommitted
fix(ci): replace invalid --benchmark-skip flag with simple performance test
The --benchmark-skip flag is not a valid pytest argument, causing 'error: unrecognized arguments' in beta-release workflow. Replaced with simple performance test that doesn't require pytest-benchmark plugin. Changes: - Remove invalid --benchmark-skip flag - Use simple_performance_test.py for performance validation - Maintains performance verification without plugin dependencies - Runs with optimal performance settings (4 threads, no memory debugging) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c3762b1 commit 1761509

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/beta-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ jobs:
126126
echo "Running integration tests..."
127127
python run_tests.py -m integration --no-header
128128
129-
# Run benchmark tests with optimal performance (no memory debugging)
130-
echo "Running benchmark tests with performance optimizations..."
131-
OMP_NUM_THREADS=4 MKL_NUM_THREADS=4 OPENBLAS_NUM_THREADS=4 python -m pytest tests/benchmark_text_service.py -v --no-header --benchmark-skip
129+
# Run simple performance validation (no pytest-benchmark dependency)
130+
echo "Running simple performance validation..."
131+
OMP_NUM_THREADS=4 MKL_NUM_THREADS=4 OPENBLAS_NUM_THREADS=4 python tests/simple_performance_test.py
132132
133133
- name: Build package
134134
run: |

0 commit comments

Comments
 (0)