From: Mike Bayer Date: Tue, 7 Oct 2025 02:53:20 +0000 (-0400) Subject: dev X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;ds=inline;p=thirdparty%2Fsqlalchemy%2Falembic.git dev Change-Id: I5651581e732ecd2a3c3f28e8593cb394b3fbd982 --- diff --git a/noxfile.py b/noxfile.py index d08a7c06..06caee33 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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"