You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Customer request to add in option to generate the JUnit report paths like they had been in v0.76. Customer developed scripts failing for them based on the new URL of the test cases
parser.add_argument('-l', '--level', help='Environment Name if only doing single environment. Should be in the form of level/env')
783
-
parser.add_argument('-e', '--environment', help='Environment Name if only doing single environment. Should be in the form of level/env')
784
-
parser.add_argument('-g', '--dont-generate-individual-reports', help='Don\'t Generated Individual Reports (below 2019 - this just controls execution report generate, 2019 and later - execution reports for each testcase won\'t be generated', action="store_true", default=False)
785
-
parser.add_argument('--wait_time', help='Time (in seconds) to wait between execution attempts', type=int, default=30)
786
-
parser.add_argument('--wait_loops', help='Number of times to retry execution', type=int, default=1)
787
-
parser.add_argument('--timing', help='Display timing information for report generation', action="store_true", default=False)
788
-
parser.add_argument('--junit', help='Output test results in JUnit format', action="store_true")
789
-
parser.add_argument('--print_exc', help='Output test results in JUnit format', action="store_true")
parser.add_argument('--use_archive_extract', help='Uses Archive/Extract for reports to save time on report generation', action="store_true", default=False)
792
-
parser.add_argument('--report_only_failures', help='Report only failed test cases', action="store_true", default=False)
793
-
parser.add_argument('--no_full_report', help='Generate just metrics for jenkins consumption', action="store_true", default=False)
794
-
795
-
parser.add_argument('--legacy', help='Force legacy reports for testing only', action="store_true", default=False)
796
-
parser.add_argument('--buildlog', help='Build Log for CBT Statitics', default=None)
help='Don\'t Generated Individual Reports. Below VC2019 - this just controls execution report generate. VC2019 and later - execution reports for each testcase won\'t be generated', action="store_true", default=False)
798
+
parser.add_argument('--wait_time', help='Time (in seconds) to wait between execution attempts', type=int, default=30)
799
+
parser.add_argument('--wait_loops', help='Number of times to retry execution', type=int, default=1)
800
+
parser.add_argument('--timing', help='Display timing information for report generation', action="store_true", default=False)
801
+
parser.add_argument('--buildlog', help='Build Log for CBT Statitics', default=None)
802
+
803
+
## Hidden because they are specific to customer need or testing
print("Must have a valid --buildlog file to use --use_archive_extract")
802
817
print("The option use_archive_extract is disabled")
818
+
args.use_archive_extract=False
803
819
804
820
legacy=args.legacy
805
821
timing=args.timing
@@ -836,16 +852,14 @@ def new_init(self):
836
852
837
853
ifargs.verbose:
838
854
verbose=True
839
-
ifargs.print_exc:
855
+
856
+
ifargs.print_excorverbose:
840
857
print_exc=True
858
+
841
859
wait_time=args.wait_time
842
860
wait_loops=args.wait_loops
843
861
844
-
ifargs.junit:
845
-
junit=True
846
-
else:
847
-
print ("Test results reporting has been migrated to JUnit. If you are using older xUnit plugin with Single Jobs, please switch to using JUnit. If you need assistance with that, contact [email protected]")
0 commit comments