From 402bb1ae65dd969ff439d15da0c7f950d74fb067 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Tue, 3 Sep 2024 15:57:47 +0200 Subject: [PATCH] chore: run update tests single threaded --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 691fcdf45..5edbf0da8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,8 +86,7 @@ jobs: - name: Run isolated update tests in release profile # Some `storage-proofs-update` tests need to run sequentially due to # their high memory usage. - #cargo test --release -p storage-proofs-update --features isolated-testing ${{ matrix.cargo-args }} -- --test-threads=1 - run: cargo test --release -p storage-proofs-update --features isolated-testing ${{ matrix.cargo-args }} -- --nocapture + run: cargo test --release -p storage-proofs-update --features isolated-testing ${{ matrix.cargo-args }} -- --nocapture --test-threads=1 #test_ignored_release: # runs-on: ubuntu-latest