From 7143bfa85cc3058465a81788b9e46ad346af4b1f Mon Sep 17 00:00:00 2001 From: Daniel Vigovszky Date: Wed, 29 Jan 2025 18:09:19 +0100 Subject: [PATCH] Temorarily disabling parallel execution and junit reporting for worker executor tests to disable flakyness --- Makefile.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index 49d0289d5a..f99aef1441 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -192,29 +192,29 @@ args = [ description = "Runs worker executor tests only (group 1/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag: -- --nocapture --report-time $JUNIT_OPTS -cargo test --package golem-worker-executor-base --test integration :tag:group1 -- --nocapture --report-time $JUNIT_OPTS +cargo test --package golem-worker-executor-base --test integration :tag: -- --report-time +cargo test --package golem-worker-executor-base --test integration :tag:group1 -- --report-time ''' [tasks.worker-executor-tests-group2] description = "Runs worker executor tests only (group 2/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag:group2 -- --nocapture --report-time $JUNIT_OPTS +cargo test --package golem-worker-executor-base --test integration :tag:group2 -- --report-time ''' [tasks.worker-executor-tests-group3] description = "Runs worker executor tests only (group 3/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag:group3 -- --nocapture --report-time $JUNIT_OPTS +cargo test --package golem-worker-executor-base --test integration :tag:group3 -- --report-time ''' [tasks.worker-executor-tests-group4] description = "Runs worker executor tests only (group 4/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag:group4 -- --nocapture --report-time $JUNIT_OPTS --test-threads=1 +cargo test --package golem-worker-executor-base --test integration :tag:group4 -- --report-time $JUNIT_OPTS --test-threads= ''' # NOTE: temporarily set test-threads=1 to debug flakyness @@ -222,7 +222,7 @@ cargo test --package golem-worker-executor-base --test integration :tag:group4 - description = "Runs worker executor tests only (group 5/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag:group5 -- --nocapture --report-time $JUNIT_OPTS +cargo test --package golem-worker-executor-base --test integration :tag:group5 -- --report-time ''' @@ -230,21 +230,21 @@ cargo test --package golem-worker-executor-base --test integration :tag:group5 - description = "Runs worker executor tests only (group 6/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag:group6 -- --nocapture --report-time $JUNIT_OPTS +cargo test --package golem-worker-executor-base --test integration :tag:group6 -- --report-time ''' [tasks.worker-executor-tests-group7] description = "Runs worker executor tests only (group 7/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag:group7 -- --nocapture --report-time $JUNIT_OPTS +cargo test --package golem-worker-executor-base --test integration :tag:group7 -- --report-time ''' [tasks.worker-executor-tests-group8] description = "Runs worker executor tests only (group 8/8)" env = { "RUST_BACKTRACE" = "1", "WASMTIME_BACKTRACE_DETAILS" = "1", "RUST_LOG" = "info", "RUST_TEST_TIME_INTEGRATION" = "5000,30000" } script = ''' -cargo test --package golem-worker-executor-base --test integration :tag:group8 -- --nocapture --report-time $JUNIT_OPTS +cargo test --package golem-worker-executor-base --test integration :tag:group8 -- --report-time ''' [tasks.integration-tests]