Allow database tests to run in parallel again

This commit is contained in:
Quentin Gliech
2025-04-14 17:31:15 +02:00
parent f67f31afb3
commit ff89559a63

View File

@@ -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'