diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2021-07-25 19:02:29 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2021-07-31 23:08:23 +0200 |
commit | f075f391cbae6fcd83ef632ac1f7cdba1cdfdea0 (patch) | |
tree | 0fb2799e0881ff17fcefe2434c34323ff908ab34 /.github | |
parent | [Install] Update and fix python optional requirements (diff) | |
download | deluge-f075f391cbae6fcd83ef632ac1f7cdba1cdfdea0.tar.xz deluge-f075f391cbae6fcd83ef632ac1f7cdba1cdfdea0.zip |
[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.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |