From de0d85b907c5f7c39ec35ddb1cf4e9f8760b334f Mon Sep 17 00:00:00 2001 From: Michael Ilyin Date: Mon, 17 Jun 2024 13:51:03 +0200 Subject: [PATCH 1/2] windows test fix attempt --- .config/nextest.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index c911f7bd63..07272c38c6 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -20,3 +20,10 @@ test(=header_link_failure_concurrent) """ threads-required = 'num-cpus' slow-timeout = { period = "60s", terminate-after = 6 } + +# Run the following tests with all cpus available +[[profile.default.overrides]] +filter = """ +test(=downsampling_by_keyexpr) +""" +threads-required = 'num-cpus' From 132dda3b472b1f8bdc6471b22eeb2a532c894774 Mon Sep 17 00:00:00 2001 From: Michael Ilyin Date: Mon, 17 Jun 2024 14:03:07 +0200 Subject: [PATCH 2/2] experiment with explicit thread number --- .config/nextest.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 07272c38c6..0ce98178f8 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -21,9 +21,10 @@ test(=header_link_failure_concurrent) threads-required = 'num-cpus' slow-timeout = { period = "60s", terminate-after = 6 } -# Run the following tests with all cpus available +# Run the following tests with all cpus available and 4 attempts [[profile.default.overrides]] filter = """ test(=downsampling_by_keyexpr) """ -threads-required = 'num-cpus' +threads-required = 6 +retries = 4