diff --git a/.github/workflows/base-e2e-backendtest.yml b/.github/workflows/base-e2e-backendtest.yml index bdc2489eb..62525fc8a 100644 --- a/.github/workflows/base-e2e-backendtest.yml +++ b/.github/workflows/base-e2e-backendtest.yml @@ -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 }}" @@ -27,7 +27,7 @@ permissions: contents: read jobs: - e2e-test: + lg-fhir-e2e-test: runs-on: ubuntu-latest environment: ${{ inputs.environment }} steps: @@ -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 diff --git a/.github/workflows/base-e2e-fhir-backendtest.yml b/.github/workflows/base-e2e-fhir-backendtest.yml index a91f2d77e..aaf08cc13 100644 --- a/.github/workflows/base-e2e-fhir-backendtest.yml +++ b/.github/workflows/base-e2e-fhir-backendtest.yml @@ -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 }}" @@ -27,7 +27,7 @@ permissions: contents: read jobs: - e2e-test: + core-fhir-e2e-test: runs-on: ubuntu-latest environment: ${{ inputs.environment }} outputs: @@ -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 }} diff --git a/.github/workflows/full-deploy-to-pre-prod.yml b/.github/workflows/full-deploy-to-pre-prod.yml index d1b261cb9..de251f2c2 100644 --- a/.github/workflows/full-deploy-to-pre-prod.yml +++ b/.github/workflows/full-deploy-to-pre-prod.yml @@ -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: @@ -146,4 +146,3 @@ jobs: sandbox: pre-prod secrets: AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }} -