From 5a885ac2a7cb777e6e6f5836c31c1bdfaa04b3bb Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Wed, 19 Oct 2022 13:50:41 +0200 Subject: [PATCH] OP-3426 - changed source DBs It might be better to enhance testing DBs with _tests suffix and control it with single argument (or env var). --- tests/lib/testing_classes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/testing_classes.py b/tests/lib/testing_classes.py index f0899e3e18..946ad67197 100644 --- a/tests/lib/testing_classes.py +++ b/tests/lib/testing_classes.py @@ -38,9 +38,9 @@ class ModuleUnitTest(BaseTest): PERSIST = False # True to not purge temporary folder nor test DB TEST_OPENPYPE_MONGO = "mongodb://localhost:27017" - TEST_DB_NAME = "test_db" + TEST_DB_NAME = "avalon_tests" TEST_PROJECT_NAME = "test_project" - TEST_OPENPYPE_NAME = "test_openpype" + TEST_OPENPYPE_NAME = "openpype_tests" TEST_FILES = []