From e8ffed69791a592fbd99f0be67416f6219bb39c0 Mon Sep 17 00:00:00 2001 From: rishflab Date: Thu, 8 Oct 2020 15:37:39 +1100 Subject: [PATCH] Run CI tests on one thread This is quick and dirty fix to resolve xmr-btc-swap and monero-harness tests failing in CI when run concurrently. --- .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 cfa28fba..91e11e40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,4 +74,4 @@ jobs: run: cargo check --workspace --all-targets --all-features - name: Cargo test - run: cargo test --workspace --all-features + run: cargo test --workspace --all-features -- --test-threads 1