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