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
description="Upload test results from the test-results directory."
71
79
)
72
-
parser.add_argument("--jira-ref", type=str, help="Specify the Jira reference to upload to")
73
-
parser.add_argument("--results-dir", type=str, help="Specify the results directory to upload from")
74
-
parser.add_argument("--no-html", action="store_true", help="Don't include HTML files in upload")
75
-
parser.add_argument("--no-trace", action="store_true", help="Don't include trace files")
80
+
parser.add_argument(
81
+
"--jira-ref", type=str, help="Specify the Jira reference to upload to"
82
+
)
83
+
parser.add_argument(
84
+
"--results-dir", type=str, help="Specify the results directory to upload from"
85
+
)
86
+
parser.add_argument(
87
+
"--no-html", action="store_true", help="Don't include HTML files in upload"
88
+
)
89
+
parser.add_argument(
90
+
"--no-trace", action="store_true", help="Don't include trace files"
91
+
)
76
92
parser.add_argument("--no-csv", action="store_true", help="Don't include CSV files")
77
-
parser.add_argument("--no-screenshots", action="store_true", help="Don't include screenshots")
78
-
parser.add_argument("--no-comment", action="store_true", help="Don't include a comment")
79
-
parser.add_argument("--no-env-data", action="store_true", help="Don't include environment metadata in comment")
80
-
parser.add_argument("--overwrite-files", action="store_true", help="If files are already on the Jira ticket with the same name, overwrite them with this file.")
81
-
parser.add_argument("--auto-confirm", action="store_true", help="Don't prompt to confirm actions before proceeding")
93
+
parser.add_argument(
94
+
"--no-screenshots", action="store_true", help="Don't include screenshots"
95
+
)
96
+
parser.add_argument(
97
+
"--no-comment", action="store_true", help="Don't include a comment"
98
+
)
99
+
parser.add_argument(
100
+
"--no-env-data",
101
+
action="store_true",
102
+
help="Don't include environment metadata in comment",
103
+
)
104
+
parser.add_argument(
105
+
"--overwrite-files",
106
+
action="store_true",
107
+
help="If files are already on the Jira ticket with the same name, overwrite them with this file.",
108
+
)
109
+
parser.add_argument(
110
+
"--auto-confirm",
111
+
action="store_true",
112
+
help="Don't prompt to confirm actions before proceeding",
0 commit comments