We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d63362 commit 608f5f0Copy full SHA for 608f5f0
1 file changed
.github/workflows/ci.yml
@@ -126,7 +126,16 @@ jobs:
126
env:
127
LBUG_PYTHON_BACKEND: capi
128
run: |
129
- .venv/bin/python -m pytest -vv ./test
+ if ! command -v gdb >/dev/null 2>&1; then
130
+ sudo apt-get update
131
+ sudo apt-get install -y gdb
132
+ fi
133
+ gdb --batch \
134
+ -ex "set pagination off" \
135
+ -ex "set print thread-events off" \
136
+ -ex "run" \
137
+ -ex "thread apply all bt full" \
138
+ --args .venv/bin/python -m pytest -vv ./test
139
140
python-ci-pybind:
141
runs-on: ubuntu-latest
0 commit comments