From b63db5265ee82e52321a1d1285f195c7f7bde355 Mon Sep 17 00:00:00 2001 From: jlenain Date: Mon, 20 Jan 2025 23:17:30 +0100 Subject: [PATCH] We seem to be hitting https://github.com/pytest-dev/pytest/issues/3216. Try reducing the number of threads to 1 in CI --- .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 32dd6247..3611cb2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,7 +119,7 @@ jobs: - name: Tests run: | - pytest -n auto --dist loadscope --cov=nectarchain --cov-report=xml --ignore=src/nectarchain/user_scripts + pytest -n 1 --dist loadscope --cov=nectarchain --cov-report=xml --ignore=src/nectarchain/user_scripts - uses: codecov/codecov-action@v5