From 70a96113c542f9dcc2fb966c2ad42b89939d28eb Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Thu, 2 Mar 2023 10:56:14 +0100 Subject: [PATCH] Higher timeout for CreateProjectTest#createMultipleTimes I doubt it will fix the issues we are seeing but let's try that first. AFAICS, it's always JDK 17 failing for whatever reason. --- .../java/io/quarkus/devtools/commands/CreateProjectTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/devtools/src/test/java/io/quarkus/devtools/commands/CreateProjectTest.java b/integration-tests/devtools/src/test/java/io/quarkus/devtools/commands/CreateProjectTest.java index 170c44ca120b7..70a2fdc07db98 100644 --- a/integration-tests/devtools/src/test/java/io/quarkus/devtools/commands/CreateProjectTest.java +++ b/integration-tests/devtools/src/test/java/io/quarkus/devtools/commands/CreateProjectTest.java @@ -231,7 +231,7 @@ public void createOnTopOfExisting() throws Exception { } @Test - @Timeout(3) + @Timeout(6) @DisplayName("Should create correctly multiple times in parallel with multiple threads") void createMultipleTimes() throws InterruptedException { final ExecutorService executorService = Executors.newFixedThreadPool(4);