Skip to content

Commit 31fe738

Browse files
committed
Minor fixes for a couple of issues
1 parent 0a4cbb2 commit 31fe738

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/run-e2e-automation-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ jobs:
131131
e2e-tests:
132132
permissions:
133133
id-token: write
134+
checks: write
134135
contents: write
135136
runs-on: ubuntu-latest
136137
needs: [wait-for-deployment]

tests/e2e_automation/.env.example.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ aws_profile_name=345594581768_DEV-IMMS-Devops
1515
S3_env=pr-123
1616
# LOCAL_RUN_WITHOUT_S3_UPLOAD = True
1717
LOCAL_RUN_FILE_NAME=HPV_Vaccinations_v5_V0V8L_20251111T16304982.csv
18-
AWS_DOMAIN_NAME=https://pr-123.imms.dev.vds.platform.nhs.uk
18+
AWS_DOMAIN_NAME=pr-123.imms.dev.vds.platform.nhs.uk
1919

2020
PROXY_NAME=immunisation-fhir-api-pr-123
2121
# See README for details on how to obtain this

tests/e2e_automation/features/APITests/steps/test_status_steps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def send_request_status_endpoint(context: ScenarioContext) -> None:
2727
def send_request_to_aws_backend(context: ScenarioContext) -> None:
2828
# Let exception be raised if expected env var is not present
2929
aws_domain_name: str = os.environ["AWS_DOMAIN_NAME"]
30-
backend_status_url = aws_domain_name + "/status"
30+
backend_status_url = "https://" + aws_domain_name + "/status"
3131

3232
with pytest.raises(requests.exceptions.ConnectionError) as e:
3333
requests.get(backend_status_url)

0 commit comments

Comments
 (0)