From 9d77ee00f830f534d3b5f0b82d14e11dcccd5f45 Mon Sep 17 00:00:00 2001 From: CapCap Date: Mon, 14 Mar 2022 21:37:19 -0700 Subject: [PATCH] increase parallelism --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 86a3c717351c1..7cc2034950ad4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,9 +40,10 @@ jobs: machine: image: ubuntu-2004:current resource_class: 2xlarge + parallelism: 2 steps: - dev-setup - - run: RUST_BACKTRACE=full cargo nextest --nextest-profile ci --partition hash:1/1 --test-threads 5 --package smoke-test + - run: RUST_BACKTRACE=full cargo nextest --nextest-profile ci --partition hash:$CIRCLE_NODE_INDEX/$CIRCLE_NODE_TOTAL --test-threads 5 --package smoke-test unit-test: machine: image: ubuntu-2004:current