From 1bab8020edf9de9c8b601177daaaab7e9ad8c737 Mon Sep 17 00:00:00 2001 From: Rain Date: Mon, 8 Jan 2024 14:33:43 -0800 Subject: [PATCH 1/3] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20in?= =?UTF-8?q?itial=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Created using spr 1.3.5 --- .config/nextest.toml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 4f927d2396..bb9cf7da65 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -3,7 +3,7 @@ # # The required version should be bumped up if we need new features, performance # improvements or bugfixes that are present in newer versions of nextest. -nextest-version = { required = "0.9.59", recommended = "0.9.64" } +nextest-version = { required = "0.9.64", recommended = "0.9.64" } experimental = ["setup-scripts"] @@ -30,5 +30,11 @@ command = 'cargo run -p crdb-seed --profile test' clickhouse-cluster = { max-threads = 1 } [[profile.default.overrides]] -filter = 'package(oximeter-db) and test(replicated)' +filter = 'binary_id(oximeter-db::replicated)' test-group = 'clickhouse-cluster' + +[[profile.default.overrides]] +filter = 'binary_id(omicron-nexus::test_all)' +# As of 2023-01-08, the slowest test in test_all takes 196s on a Ryzen 7950X. +# 900s is a good upper limit that adds a comfortable buffer. +slow-timeout = { period = '60s', terminate-after = 15 } From bd5ac2b94d575b65393c4670f72e984dbff76bba Mon Sep 17 00:00:00 2001 From: Rain Date: Mon, 8 Jan 2024 15:51:45 -0800 Subject: [PATCH 2/3] restrict timeouts to CI Created using spr 1.3.5 --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index bb9cf7da65..4d36397592 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -33,7 +33,7 @@ clickhouse-cluster = { max-threads = 1 } filter = 'binary_id(oximeter-db::replicated)' test-group = 'clickhouse-cluster' -[[profile.default.overrides]] +[[profile.ci.overrides]] filter = 'binary_id(omicron-nexus::test_all)' # As of 2023-01-08, the slowest test in test_all takes 196s on a Ryzen 7950X. # 900s is a good upper limit that adds a comfortable buffer. From a690f635ae814047c1676d10c33bd7adb435553d Mon Sep 17 00:00:00 2001 From: Rain Date: Mon, 8 Jan 2024 21:36:22 -0800 Subject: [PATCH 3/3] Fix, whoops Created using spr 1.3.5 --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 4d36397592..136a21a236 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -30,7 +30,7 @@ command = 'cargo run -p crdb-seed --profile test' clickhouse-cluster = { max-threads = 1 } [[profile.default.overrides]] -filter = 'binary_id(oximeter-db::replicated)' +filter = 'package(oximeter-db) and test(replicated)' test-group = 'clickhouse-cluster' [[profile.ci.overrides]]