]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
dev
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 7 Oct 2025 02:53:20 +0000 (22:53 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 7 Oct 2025 02:53:20 +0000 (22:53 -0400)
Change-Id: I5651581e732ecd2a3c3f28e8593cb394b3fbd982

noxfile.py

index d08a7c0648776cb518d63723b4d5f4ae62581c67..06caee3356aab9a983b4add1c6a841bfb232f4da 100644 (file)
@@ -184,8 +184,9 @@ def _tests(
             # produce individual junit files that are per-database (or as close
             # as we can get).  jenkins junit plugin will merge all the files...
             if len(databases) == 1:
-                junitfile = f"junit-{databases[0]}.xml"
-                suite_name = f"pytest-{databases[0]}"
+                tag = "-".join(databases)
+                junitfile = f"junit-{tag}.xml"
+                suite_name = f"pytest-{tag}"
             else:
                 junitfile = "junit-general.xml"
                 suite_name = "pytest-general"