From f075f391cbae6fcd83ef632ac1f7cdba1cdfdea0 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 25 Jul 2021 18:02:29 +0100 Subject: [CI] Add catchsegv to get a backtrace for segfaults Encountering random libtorrent segfault with GitHub action so add catchsegv when running tests to get more information. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4333a374..06763eb2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: run: | cp /usr/lib/python3/dist-packages/libtorrent*.so $GITHUB_WORKSPACE/deluge python -c 'from deluge._libtorrent import lt; print(lt.__version__)'; - pytest -m "not (todo or gtkui or security)" deluge + catchsegv pytest -m "not (todo or gtkui or security)" deluge test-windows: runs-on: windows-latest -- cgit