From 740e0f49474b46a7b768a32bfb2af545671617d6 Mon Sep 17 00:00:00 2001 From: HudsonGraeme Date: Thu, 15 Feb 2024 15:38:59 +0000 Subject: [PATCH] Remove verbosity and multithreading which was used for testing risc0 fix --- .github/actions/bench/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/bench/action.yml b/.github/actions/bench/action.yml index 0ff82be..2636598 100644 --- a/.github/actions/bench/action.yml +++ b/.github/actions/bench/action.yml @@ -97,9 +97,9 @@ runs: ;; esac if [ -n "$feature" ]; then - RUST_LOG=trace cargo nextest run --nocapture --features $feature benchmarking_tests::tests #--test-threads 1 + RUST_LOG=trace cargo nextest run --features $feature benchmarking_tests::tests --test-threads 1 else - RUST_LOG=trace cargo nextest run --nocapture benchmarking_tests::tests #--test-threads 1 + RUST_LOG=trace cargo nextest run benchmarking_tests::tests --test-threads 1 fi - name: Process Results shell: bash