Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/base-e2e-backendtest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Z-BASE E2e Test: E2e shared actions for running tests on the NDR Backend"
name: "Z-BASE E2E Test: E2E shared actions for running Lloyd George FHIR API E2E tests on the NDR Backend"

run-name: "${{ github.event.inputs.build_branch }} | ${{ github.event.inputs.environment }} | ${{ github.event.inputs.sandbox }}"

Expand Down Expand Up @@ -27,7 +27,7 @@ permissions:
contents: read

jobs:
e2e-test:
lg-fhir-e2e-test:
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
steps:
Expand Down Expand Up @@ -82,6 +82,6 @@ jobs:
env:
SANDBOX: ${{ inputs.sandbox }}

- name: Run E2e Tests
- name: Run Lloyd George FHIR API E2E tests
run: |
make test-api-e2e
6 changes: 3 additions & 3 deletions .github/workflows/base-e2e-fhir-backendtest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Z-BASE FHIR API E2E Test: E2e shared actions for running FHIR API tests on the NDR Backend"
name: "Z-BASE E2E Test: E2E shared actions for running Core FHIR API E2E tests on the NDR Backend"

run-name: "${{ github.event.inputs.build_branch }} | ${{ github.event.inputs.environment }} | ${{ github.event.inputs.sandbox }}"

Expand Down Expand Up @@ -27,7 +27,7 @@ permissions:
contents: read

jobs:
e2e-test:
core-fhir-e2e-test:
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
outputs:
Expand Down Expand Up @@ -62,5 +62,5 @@ jobs:
source ./lambdas/venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
- name: Run E2e Tests
- name: Run Core FHIR API E2E tests
run: make test-fhir-api-e2e WORKSPACE=${{ inputs.sandbox }}
5 changes: 2 additions & 3 deletions .github/workflows/full-deploy-to-pre-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ jobs:
secrets:
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}

run_backend_e2e_tests:
name: Run E2E Tests
run_fhir_api_e2e_tests:
name: Run FHIR API E2E Tests
needs: ["deploy_all_lambdas"]
uses: ./.github/workflows/ndr-e2e-test-sandbox.yml
with:
Expand All @@ -146,4 +146,3 @@ jobs:
sandbox: pre-prod
secrets:
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}

Loading