Skip to content

Commit

Permalink
Wait for server to start running, and always print restler output
Browse files Browse the repository at this point in the history
  • Loading branch information
iainsproat committed Dec 30, 2024
1 parent e68da6a commit c8002de
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/rest-api-fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ jobs:
cp ${{ github.workspace }}/speckle-server/setup/fuzzer/.env.fuzz-test-example .env
- name: Run speckle-server
working-directory: ${{ github.workspace }}/speckle-server/packages/server
run: yarn start &
run: |
yarn start &
sleep 20
- name: Run RESTler coverage test
run: |
Expand All @@ -140,6 +142,7 @@ jobs:
--target_port 3000
- name: Print the results
if: always()
run: |
ls -la ${{ github.workspace }}/Test
echo ""
Expand Down Expand Up @@ -188,4 +191,4 @@ jobs:
- name: Print Docker Compose logs
if: always()
run: |
docker compose logs
docker compose --file ${{ github.workspace }}/speckle-server/docker-compose-deps.yml logs

0 comments on commit c8002de

Please sign in to comment.