Skip to content

Commit 1b3b4a1

Browse files
test-suite
1 parent 42cd8f8 commit 1b3b4a1

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/actions/run-test-suite/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ runs:
3737
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
3838
with:
3939
name: ${{ inputs.test-type }}-test-results
40-
path: pathology-api/test-artefacts/
40+
path: gateway-api/test-artefacts/
4141
retention-days: 30
4242

4343
- name: "Check ${{ inputs.test-type }}-tests.xml exists"
4444
id: check
4545
if: always()
4646
shell: bash
4747
run: |
48-
if [[ -f "pathology-api/test-artefacts/${{ inputs.test-type }}-tests.xml" ]]; then
48+
if [[ -f "gateway-api/test-artefacts/${{ inputs.test-type }}-tests.xml" ]]; then
4949
echo "exists=true" >> "$GITHUB_OUTPUT"
5050
else
5151
echo "exists=false" >> "$GITHUB_OUTPUT"
@@ -55,4 +55,4 @@ runs:
5555
if: ${{ always() && steps.check.outputs.exists == 'true' }}
5656
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86
5757
with:
58-
paths: pathology-api/test-artefacts/${{ inputs.test-type }}-tests.xml
58+
paths: gateway-api/test-artefacts/${{ inputs.test-type }}-tests.xml

.github/workflows/preview-env.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ env:
1010
ECR_REPOSITORY_NAME: "whoami"
1111
TF_STATE_BUCKET: "cds-cdg-dev-tfstate-900119715266"
1212
PREVIEW_STATE_PREFIX: "dev/preview/"
13+
BASE_URL: 'https://internal-dev.api.service.nhs.uk/${{ vars.PROXYGEN_API_NAME }}-pr-${{ github.event.pull_request.number }}'
14+
ENV: "remote"
1315
python_version: "3.14"
1416

1517
jobs:

0 commit comments

Comments
 (0)