We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 017d30f commit 4ce5175Copy full SHA for 4ce5175
.github/workflows/auto-ci.yml
@@ -43,6 +43,7 @@ jobs:
43
44
build-py:
45
needs: build-js
46
+ timeout-minutes: 90
47
48
strategy:
49
fail-fast: false
@@ -88,11 +89,14 @@ jobs:
88
89
jupyter kernelspec list
90
jupyter nbconvert --execute --ExecutePreprocessor.kernel_name=python --to html *.ipynb
91
- name: Try Pytest
92
+ timeout-minutes: 20
93
working-directory: ./
94
run: |
95
pip install duckdb_engine
96
pip install pytest
- pytest tests
97
+ echo "[CI] pytest start"
98
+ python -X faulthandler -m pytest -o faulthandler_timeout=300 tests
99
+ echo "[CI] pytest end"
100
- name: Uploading notebooks
101
uses: actions/upload-artifact@v4
102
if: ${{ matrix.python-version == '3.12' && matrix.os-version == 'ubuntu-latest' }}
0 commit comments