From dbd6ff0eddf28bdc661b7f3fc499553b7279e5ba Mon Sep 17 00:00:00 2001 From: dotasek Date: Tue, 9 May 2023 16:34:55 -0400 Subject: [PATCH] Update smoke-tests.yml Skip maven tests Wait longer for server --- .github/workflows/smoke-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index f203856..a07e1c1 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -27,7 +27,7 @@ jobs: with: java-version: 17 - name: Build with Maven - run: mvn -B package --file pom.xml + run: mvn -B package --file pom.xml -Dmaven.test.skip=true - name: Download and install HTTP client run: | curl -f -L -o ijhttp.zip "https://jb.gg/ijhttp/latest" @@ -35,7 +35,7 @@ jobs: - name: Start server with jetty run: | mvn jetty:run & export JPA_PROCESS=$! - sleep 20 + sleep 45 - name: Execute smoke tests run: ./ijhttp/ijhttp ./src/test/smoketest/plain_server.http --env-file ./src/test/smoketest/http-client.env.json --env default - name: Stop server