We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c4a036 commit 3dd02b8Copy full SHA for 3dd02b8
ci/travis/test_script.sh
@@ -20,8 +20,12 @@ if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
20
pytest $PYTEST_ARGS $RUN_PEP8
21
exit $?
22
else
23
- python $PYTHON_ARGS -m pytest $PYTEST_ARGS $RUN_PEP8
+ gdb -return-child-result -batch \
24
+ -ex 'set disable-randomization off' \
25
+ -ex r \
26
+ -ex bt \
27
+ --args python $PYTHON_ARGS -m pytest $PYTEST_ARGS $RUN_PEP8
28
exit_val=$?
- echo "pytest exited with result $exit_val"
29
+ echo "gdb exited with result $exit_val"
30
exit $exit_val
31
fi
0 commit comments