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
Copy file name to clipboardexpand all lines: karate-core/src/main/java/com/intuit/karate/Main.java
+9-1
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ public class Main implements Callable<Void> {
94
94
@Option(names = {"-T", "--threads"}, description = "number of threads when running tests")
95
95
intthreads;
96
96
97
-
@Option(names = {"-o", "--output"}, description = "directory where logs and reports are output (default 'target')")
97
+
@Option(names = {"-o", "--output"}, description = "directory where logs and report sub-folders are output (default 'target')")
98
98
Stringoutput = FileUtils.getBuildDir();
99
99
100
100
@Option(names = {"-f", "--format"}, split = ",", description = "comma separate report output formats. tilde excludes the output report. html report is included by default unless it's negated."
@@ -113,6 +113,9 @@ public class Main implements Callable<Void> {
113
113
@Option(names = {"-g", "--configdir"}, description = "directory where 'karate-config.js' is expected (default 'classpath:' or <workingdir>)")
114
114
StringconfigDir;
115
115
116
+
@Option(names = {"-r", "--reportdir"}, description = "directory where Karate HTML and JSON reports are placed (default '<output>/karate-reports')")
0 commit comments