From 5214dd1c239f3251384d50c7d7da4aa226cc3f7e Mon Sep 17 00:00:00 2001 From: Johanna Larsson Date: Tue, 22 Sep 2026 16:31:05 +0100 Subject: [PATCH] Remove forced serialization where not needed Tests already run in isolation, so this is only relevant when messing with env vars and stuff, I think! --- .config/nextest.toml | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 9761845..c280457 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -52,24 +52,12 @@ serial-env-tests = { max-threads = 1 } heavy-load-tests = { max-threads = 4 } io-heavy-sim = { max-threads = 2 } -[[profile.default.overrides]] -filter = "test(/import_with_verification/) | test(/plc_migration/)" -test-group = "serial-env-tests" - -[[profile.default.overrides]] -filter = "binary(handle_domains)" -test-group = "serial-env-tests" - [[profile.default.overrides]] filter = "binary(ripple_cluster)" test-group = "serial-env-tests" [[profile.default.overrides]] -filter = "package(tranquil-signal)" -test-group = "serial-env-tests" - -[[profile.default.overrides]] -filter = "package(tranquil-config)" +filter = "package(tranquil-signal) and test(/^tests::/)" test-group = "serial-env-tests" [[profile.default.overrides]] @@ -116,24 +104,12 @@ filter = "binary(fd_lifecycle)" slow-timeout = { period = "300s", terminate-after = 4 } test-group = "io-heavy-sim" -[[profile.ci.overrides]] -filter = "test(/import_with_verification/) | test(/plc_migration/)" -test-group = "serial-env-tests" - -[[profile.ci.overrides]] -filter = "binary(handle_domains)" -test-group = "serial-env-tests" - [[profile.ci.overrides]] filter = "binary(ripple_cluster)" test-group = "serial-env-tests" [[profile.ci.overrides]] -filter = "package(tranquil-signal)" -test-group = "serial-env-tests" - -[[profile.ci.overrides]] -filter = "package(tranquil-config)" +filter = "package(tranquil-signal) and test(/^tests::/)" test-group = "serial-env-tests" [[profile.ci.overrides]]