From ff89559a63fae9a03ea6c25df2be1f3564840116 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Mon, 14 Apr 2025 17:31:15 +0200 Subject: [PATCH] Allow database tests to run in parallel again --- .config/nextest.toml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 428b597a6..351fb92d7 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,14 +1,2 @@ -[test-groups] -database = { max-threads = 1 } - [profile.default] retries = 1 - -# sqlx has a problem with nextest, as it uses a process-local semaphore to have -# tests use different databases. This doesn't work with nextest, as it has a -# process-per-test model, which is why we need to make sure only one test uses -# the database at a time. -# See https://github.com/launchbadge/sqlx/pull/3334 -[[profile.default.overrides]] -filter = 'package(mas-handlers) or package(mas-storage-pg)' -test-group = 'database'