Skip to content

Commit 6c09c1a

Browse files
author
Neha Agarwal
authored
Merge pull request #36 from agarneha1331/gradle_fix_cli_args
Fix in gradle.build to honour cli args
2 parents e5b5a65 + e945673 commit 6c09c1a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ tasks.withType(JavaCompile) {
2626
options.encoding = 'UTF-8'
2727
}
2828

29+
tasks.withType(Test) {
30+
systemProperties = System.properties
31+
}
32+
2933
task sampleTest(type: Test) {
3034
systemProperty "cucumber.publish.quiet", "true"
3135
systemProperty "cucumber.features", "src/test/resources/features/test"

0 commit comments

Comments
 (0)