Update smoke-tests.yml

Skip maven tests
Wait longer for server
This commit is contained in:
dotasek
2023-05-09 16:34:55 -04:00
committed by GitHub
parent f1765a314f
commit dbd6ff0edd

View File

@@ -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