From 57f4b3ec49021386d2db6fa848b35831624b7d02 Mon Sep 17 00:00:00 2001 From: hinerm Date: Thu, 18 Nov 2021 09:49:57 -0600 Subject: [PATCH] pytest: turn off faulthandler This may help avoid the random segfaults, according to https://github.com/jpype-project/jpype/issues/842#issuecomment-847027355 --- .github/workflows/python-test-conda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test-conda.yml b/.github/workflows/python-test-conda.yml index 2988e9e8..5db10087 100644 --- a/.github/workflows/python-test-conda.yml +++ b/.github/workflows/python-test-conda.yml @@ -34,5 +34,5 @@ jobs: mamba install -c conda-forge pytest - name: Test with pytest run: | - pytest + pytest -p no:faulthandler