commit | d0f49d2f5085ca68e3dc8725f1fb1c9674bfb5ed | [log] [tgz] |
---|---|---|
author | Steve Dower <steve.dower@microsoft.com> | Tue Sep 18 09:10:26 2018 -0700 |
committer | GitHub <noreply@github.com> | Tue Sep 18 09:10:26 2018 -0700 |
tree | 4d209925cba8d1ad31b7a97439389a2e0fdd028e | |
parent | cb5778f00ce48631c7140f33ba242496aaf7102b [diff] [blame] |
bpo-34582: Adds JUnit XML output for regression tests (GH-9210)
diff --git a/Lib/test/libregrtest/cmdline.py b/Lib/test/libregrtest/cmdline.py index bd126b3..538ff05 100644 --- a/Lib/test/libregrtest/cmdline.py +++ b/Lib/test/libregrtest/cmdline.py
@@ -268,6 +268,10 @@ help='if a test file alters the environment, mark ' 'the test as failed') + group.add_argument('--junit-xml', dest='xmlpath', metavar='FILENAME', + help='writes JUnit-style XML results to the specified ' + 'file') + return parser