From db569fce642c533c33806152da47d57144e557b2 Mon Sep 17 00:00:00 2001 From: Fridolin Glatter <83776373+glatterf42@users.noreply.github.com> Date: Mon, 15 Jan 2024 10:18:32 +0100 Subject: [PATCH] Make pytest use one process for CI (#510) --- .github/workflows/pytest.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 636458566..5937790ba 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -117,12 +117,13 @@ jobs: shell: Rscript {0} - name: Run test suite using pytest + # FIXME: Use --numprocesses=auto once flaky tests are fixed run: | pytest ixmp \ -m "not performance" \ --color=yes -rA --verbose \ --cov-report=xml \ - --numprocesses=auto + --numprocesses=1 shell: bash - name: Upload test coverage to Codecov.io