We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a426f commit a0f68cfCopy full SHA for a0f68cf
1 file changed
.github/workflows/ci.yml
@@ -85,11 +85,18 @@ jobs:
85
run: uv sync --all-extras
86
87
- name: Run unit tests with coverage
88
+ env:
89
+ PYTHONFAULTHANDLER: "1"
90
run: |
91
if [ "${{ matrix.python-version }}" = "3.9" ]; then
- uv run pytest tests/unit/ -v --cov=drift/core --cov-report=xml
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
96
else
- uv run pytest tests/unit/ -v
97
98
99
+ -o faulthandler_timeout=120
100
fi
101
102
- name: Upload coverage to Coveralls
0 commit comments