From 728226c24c25ffe0e8ea6c9f75e7a42a0f3fb2b0 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 6 Oct 2025 22:53:20 -0400 Subject: [PATCH] dev Change-Id: I5651581e732ecd2a3c3f28e8593cb394b3fbd982 --- noxfile.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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" -- 2.47.3