We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b157e commit ac6a8e0Copy full SHA for ac6a8e0
1 file changed
.github/workflows/test.yml
@@ -132,10 +132,8 @@ jobs:
132
run: |
133
# Verify backtrader import
134
python -c "import backtrader; print(f'Backtrader imported: {backtrader.__version__}')"
135
- # Run tests without parallel execution first for clearer errors
136
- pytest tests/ --tb=short --timeout=300 -p no:html -p no:benchmark -x -v 2>&1 | head -500 || true
137
- # Run full tests with parallel execution
138
- pytest tests/ -n 4 --tb=short --timeout=600 -p no:html -p no:benchmark
+ # Run tests with parallel execution
+ pytest tests/ -n 4 --tb=short --timeout=600
139
140
test-summary:
141
name: Test Summary
0 commit comments