Projet

Général

Profil

0006-tests-include-bijoe-in-test-database-name.patch

Frédéric Péters, 15 mai 2022 11:14

Télécharger (844 octets)

Voir les différences:

Subject: [PATCH 6/6] tests: include bijoe in test database name

 tests/conftest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
tests/conftest.py
58 58
def load_schema_db(schema):
59 59
    import random
60 60

  
61
    database_name = 'db%s' % random.getrandbits(20)
61
    database_name = 'bijoe_test_%s' % random.getrandbits(20)
62 62
    tmpdir = tempfile.mkdtemp()
63 63
    bijoe_schema_dir = os.path.join(tmpdir, 'schemas')
64 64
    os.makedirs(bijoe_schema_dir)
65
-