From ae6d084cd0ef788fc8b33695c7cd97b0d2debb06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sun, 15 May 2022 09:41:22 +0200 Subject: [PATCH] tests: include bijoe in test database name --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index d37d6ea..2969f47 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -58,7 +58,7 @@ SCHEMA_PATHS = os.path.join(os.path.dirname(__file__), 'fixtures/') def load_schema_db(schema): import random - database_name = 'db%s' % random.getrandbits(20) + database_name = 'bijoe_test_%s' % random.getrandbits(20) tmpdir = tempfile.mkdtemp() bijoe_schema_dir = os.path.join(tmpdir, 'schemas') os.makedirs(bijoe_schema_dir)