Skip to content

Commit ac6a8e0

Browse files
author
yunjinqi
committed
fix: simplify pytest command in CI workflow
1 parent f9b157e commit ac6a8e0

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,8 @@ jobs:
132132
run: |
133133
# Verify backtrader import
134134
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
135+
# Run tests with parallel execution
136+
pytest tests/ -n 4 --tb=short --timeout=600
139137
140138
test-summary:
141139
name: Test Summary

0 commit comments

Comments
 (0)