This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
The following commit(s) were added to refs/heads/master by this push:
new 6a6ca967 minor refactor: later gradle syntax
6a6ca967 is described below
commit 6a6ca9673f08c6010b90f220da264cb3cb79263f
Author: Paul King <[email protected]>
AuthorDate: Fri Dec 27 10:50:36 2024 +1000
minor refactor: later gradle syntax
---
module/geb-core/geb-core.gradle | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/module/geb-core/geb-core.gradle b/module/geb-core/geb-core.gradle
index 21ddb8f5..ee063b92 100644
--- a/module/geb-core/geb-core.gradle
+++ b/module/geb-core/geb-core.gradle
@@ -62,7 +62,7 @@ dependencies {
}
tasks.named("test") {
- maxParallelForks gebModule.maxWorkers
+ maxParallelForks = gebModule.maxWorkers
}
tasks.register("allCrossBrowserTests") {
@@ -72,11 +72,11 @@ tasks.register("allCrossBrowserTests") {
def firefoxLinuxTestTask = tasks.register("firefoxLinuxTest", Test) {
maxHeapSize = "512m"
systemProperty "geb.dockerized.driver", "firefox"
- maxParallelForks 2
+ maxParallelForks = 2
}
tasks.named("chromeLinuxTest") {
- maxParallelForks 2
+ maxParallelForks = 2
}
tasks.named("allDockerisedCrossBrowserTests") {
@@ -99,7 +99,7 @@ sauceLabs {
}
task {
maxHeapSize = "512m"
- maxParallelForks 5
+ maxParallelForks = 5
testLogging {
events "started", "skipped", "passed", "failed"
}
@@ -150,7 +150,7 @@ browserStack {
}
task {
maxHeapSize = "512m"
- maxParallelForks 5
+ maxParallelForks = 5
testLogging {
events "started", "skipped", "passed", "failed"
}
@@ -174,7 +174,7 @@ lambdaTest {
}
task {
maxHeapSize = "512m"
- maxParallelForks 5
+ maxParallelForks = 5
testLogging {
events "started", "skipped", "passed", "failed"
}