From 5c73b134e37b0ffd113e7cb90f0edcb040b479c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Stankovi=C4=87?= Date: Tue, 27 Aug 2024 16:55:02 +0200 Subject: [PATCH 1/2] test: don't run tests sequentially --- .config/nextest.toml | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .config/nextest.toml diff --git a/.config/nextest.toml b/.config/nextest.toml deleted file mode 100644 index 48ca8ee2..00000000 --- a/.config/nextest.toml +++ /dev/null @@ -1,6 +0,0 @@ -[test-groups] -serial-integration = { max-threads = 1 } - -[[profile.default.overrides]] -filter = 'package(wire-e2e-identity)' -test-group = 'serial-integration' From 3703a2ae7418c8b8079b1f79b375a8573a6b75f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Stankovi=C4=87?= Date: Thu, 29 Aug 2024 14:46:22 +0200 Subject: [PATCH 2/2] chore: e2e-identity: depend on rstest --- Cargo.lock | 1 + e2e-identity/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index b29f6513..4398af2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4234,6 +4234,7 @@ dependencies = [ "portpicker", "rand 0.8.5", "reqwest 0.12.7", + "rstest", "rusty-acme", "rusty-jwt-tools", "scraper", diff --git a/e2e-identity/Cargo.toml b/e2e-identity/Cargo.toml index 88cea4c0..662dc4a6 100644 --- a/e2e-identity/Cargo.toml +++ b/e2e-identity/Cargo.toml @@ -48,6 +48,7 @@ lazy_static = { workspace = true } portpicker = { workspace = true } pem = { workspace = true } rand = { workspace = true } +rstest = { workspace = true} [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] rusty-acme = { version = "0.9.0", path = "../acme" }