From 1af73e7d7c88f1996ea955a7fc486c9c869648ef Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Mon, 24 Apr 2023 01:19:50 +0200 Subject: build: enable parallel Gradle build Also increases timeout in WebSocket integration test to avoid failures due to increased CPU usage during build. --- .../refinery/language/web/tests/WebSocketIntegrationTestClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'subprojects') diff --git a/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java b/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java index 2ac53ea6..46220777 100644 --- a/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java +++ b/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java @@ -19,7 +19,7 @@ import java.util.List; import static org.junit.jupiter.api.Assertions.fail; public abstract class WebSocketIntegrationTestClient { - private static final long TIMEOUT_MILLIS = Duration.ofSeconds(1).toMillis(); + private static final long TIMEOUT_MILLIS = Duration.ofSeconds(10).toMillis(); private boolean finished = false; -- cgit v1.2.3-54-g00ecf