From 23597ac18cc8ca61f72ee5370d430588b913594e Mon Sep 17 00:00:00 2001 From: Vishmayraj Date: Tue, 5 May 2026 22:03:56 +0530 Subject: [PATCH] fix(tests): add `qc` to ALL_SCHEMA_ROLES in conftest to prevent DuplicateObject on re-runs --- test/database/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/database/conftest.py b/test/database/conftest.py index 7367a53..532ca80 100644 --- a/test/database/conftest.py +++ b/test/database/conftest.py @@ -92,7 +92,7 @@ # All roles that any of the three SQL layers can create. # Used as the default set to clean up during recreate_database. -ALL_SCHEMA_ROLES = ("administrator", "testuser", "user", "guest", "sensor") +ALL_SCHEMA_ROLES = ("administrator", "testuser", "user", "guest", "sensor", "qc") # ---------------------------------------------------------------------------