We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ce176 commit 82a3bdaCopy full SHA for 82a3bda
karate-core/src/main/java/com/intuit/karate/Runner.java
@@ -173,6 +173,15 @@ public List<FeatureCall> resolveAll() {
173
if (tempOptions != null) {
174
LOGGER.info("using system property '{}': {}", Constants.KARATE_OPTIONS, tempOptions);
175
Main ko = Main.parseKarateOptions(tempOptions);
176
+ if (ko.name != null) {
177
+ scenarioName = ko.name;
178
+ }
179
+ if (ko.configDir != null) {
180
+ configDir = ko.configDir;
181
182
+ if (ko.env != null) {
183
+ env = ko.env;
184
185
if (ko.reportDir != null) {
186
reportDir = ko.reportDir;
187
}
0 commit comments