From a35386f740207a9168fd6255e30fd0f4389de0fd Mon Sep 17 00:00:00 2001 From: tmontaigu Date: Thu, 24 Aug 2023 07:19:27 +0000 Subject: [PATCH] chore(ci): remove ability for tests to be retried --- .config/nextest.toml | 10 ---------- scripts/integer-tests.sh | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index b8581402c..a749a04ea 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -5,13 +5,3 @@ failure-output = "final" fail-fast = false retries = 0 slow-timeout = "5m" - - -[[profile.ci.overrides]] -filter = 'test(/^.*param_message_1_carry_[567]_ks_pbs$/) or test(/^.*param_message_4_carry_4_ks_pbs$/)' -retries = 3 - -[[profile.ci.overrides]] -filter = 'test(/^.*param_message_[23]_carry_[23]_ks_pbs$/)' -retries = 1 - diff --git a/scripts/integer-tests.sh b/scripts/integer-tests.sh index 21aba8018..74144c80c 100755 --- a/scripts/integer-tests.sh +++ b/scripts/integer-tests.sh @@ -142,7 +142,7 @@ and not test(/.*default_add_sequence_multi_thread_param_message_3_carry_3_ks_pbs fi num_cpu_threads="$(${nproc_bin})" - num_threads=$((num_cpu_threads * 2 / 3)) + num_threads=$((num_cpu_threads * 1 / 2)) cargo "${RUST_TOOLCHAIN}" nextest run \ --tests \ --cargo-profile "${cargo_profile}" \