File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ aws_profile_name=345594581768_DEV-IMMS-Devops
1515S3_env=pr-123
1616# LOCAL_RUN_WITHOUT_S3_UPLOAD = True
1717LOCAL_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
2020PROXY_NAME=immunisation-fhir-api-pr-123
2121# See README for details on how to obtain this
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def send_request_status_endpoint(context: ScenarioContext) -> None:
2727def 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 )
You can’t perform that action at this time.
0 commit comments