From 3252fa8f42ade12609ca19224b4eedc44db7e2e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Fjellstr=C3=B6m?= <36640518+mattias-fjellstrom@users.noreply.github.com> Date: Mon, 26 May 2025 09:04:03 +0200 Subject: [PATCH] Add missing JUnit XML flag to test command help string (#37161) The test command supports outputting a JUnit XML file with the -junit-xml flag. This flag was missing from the test command help string. --- internal/command/test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/command/test.go b/internal/command/test.go index 8b236fe779..42ff7157fa 100644 --- a/internal/command/test.go +++ b/internal/command/test.go @@ -57,6 +57,11 @@ Options: -json If specified, machine readable output will be printed in JSON format + -junit-xml=path Saves a test report in JUnit XML format to the specified + file. This is currently incompatible with remote test + execution using the the -cloud-run option. The file path + must be relative or absolute. + -no-color If specified, output won't contain any color. -parallelism=n Limit the number of concurrent operations within the