Skip to content

Commit b4588d3

Browse files
committed
Debug
1 parent a0f68cf commit b4588d3

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,9 @@ jobs:
8989
PYTHONFAULTHANDLER: "1"
9090
run: |
9191
if [ "${{ matrix.python-version }}" = "3.9" ]; then
92-
uv run python -X faulthandler -m pytest tests/unit/ \
93-
--durations=25 \
94-
-o faulthandler_timeout=120 \
95-
--cov=drift/core --cov-report=xml
92+
uv run python -X faulthandler -c "import faulthandler, sys, pytest; faulthandler.dump_traceback_later(60, repeat=True); sys.exit(pytest.main(['tests/unit/', '--durations=25', '--cov=drift/core', '--cov-report=xml']))"
9693
else
97-
uv run python -X faulthandler -m pytest tests/unit/ \
98-
--durations=25 \
99-
-o faulthandler_timeout=120
94+
uv run python -X faulthandler -c "import faulthandler, sys, pytest; faulthandler.dump_traceback_later(60, repeat=True); sys.exit(pytest.main(['tests/unit/', '--durations=25']))"
10095
fi
10196
10297
- name: Upload coverage to Coveralls

0 commit comments

Comments
 (0)