Skip to content

Commit

Permalink
Add debugging output to integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
sbreker committed Oct 23, 2024
1 parent cf10497 commit 1876cb6
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,25 @@ jobs:
env:
BROWSER: ${{ matrix.browser }}
CYPRESS_VIDEO: false
CYPRESS_BASE_URL: http://localhost
CYPRESS_BASE_URL: http://127.0.0.1
run: npx cypress run --config-file cypress.config.oidc.js --browser ${BROWSER,}

- name: Ensure NGINX is Running
run: sudo systemctl status nginx
- name: Output NGINX error log
if: always()
run: sudo cat /var/log/nginx/error.log
- name: Output AtoM error test log
if: always()
run: sudo cat ./log/qubit_test.log
- name: Output AtoM error prod log
if: always()
run: sudo cat ./log/qubit_prod.log
- name: Dump Keycloak log
if: always()
run: |
docker compose -f ${{ github.workspace }}/docker/docker-compose.keycloak.yml logs keycloak
- name: Tear down services
if: always()
run: |
Expand Down

0 comments on commit 1876cb6

Please sign in to comment.