Skip to content

Commit

Permalink
Make setup-all completes with as minimal changes needed
Browse files Browse the repository at this point in the history
  • Loading branch information
MishNajam committed Nov 10, 2023
1 parent ba3b4e3 commit fe6618a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions integration_tests/v1/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,25 @@
opg_data_lpa_dev_aws = {
"name": "new collections api on aws dev",
"healthcheck_endpoint": {
"url": "https://uml-3042.dev.lpa.api.opg.service.justice.gov.uk/v1/healthcheck",
"url": "https://XXXX.dev.lpa.api.opg.service.justice.gov.uk/v1/healthcheck",
"method": "GET",
},
"online_tool_endpoint": {
"url": "https://uml-3042.dev.lpa.api.opg.service.justice.gov.uk/v1/lpa"
"url": "https://XXXX.dev.lpa.api.opg.service.justice.gov.uk/v1/lpa"
"-online-tool/lpas",
"method": "GET",
"valid_lpa_online_tool_ids": ["A33718377316"],
"invalid_lpa_online_tool_ids": ["banana"],
},
"use_an_lpa_endpoint": {
"url": "https://uml-3042.dev.lpa.api.opg.service.justice.gov.uk/v1/use"
"url": "https://XXXX.dev.lpa.api.opg.service.justice.gov.uk/v1/use"
"-an-lpa/lpas",
"method": "GET",
"valid_sirius_uids": ["700000000047"],
"invalid_sirius_uids": ["9"],
},
"request_code_endpoint": {
"url": "https://uml-3042.dev.lpa.api.opg.service.justice.gov.uk/v1/use-an-lpa/lpas/requestCode",
"url": "https://XXXX.dev.lpa.api.opg.service.justice.gov.uk/v1/use-an-lpa/lpas/requestCode",
"method": "POST",
"valid_sirius_lpas": [
{"caseUid": 700000000013, "actorUid": 700000000997},
Expand Down
14 changes: 7 additions & 7 deletions lambda_functions/v1/requirements/dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
connexion
connexion==2.7.0
fakeredis==1.4.5
flake8==3.8.4
flake8-quotes==3.2.0
hypothesis==6.0.0
moto~=4.1
pytest
pytest-cov
pytest-env
pytest-html
pytest==6.2.1
pytest-cov==2.10.1
pytest-env==0.6.2
pytest-html==3.1.1
tenacity==6.3.1
validators==0.18.2
yarl
yarl==1.6.3
importlib-metadata
opg-sirius-service==2.1.1
localstack-client
localstack-client==1.39
2 changes: 1 addition & 1 deletion lambda_functions/v1/requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Update this date to trigger update of layers: 20230619
Flask==2.2.5
markupsafe==2.1.1
localstack-client==1.10
localstack-client==1.39
redis==3.5.3
requests==2.31.0
Werkzeug==3.0.1
Expand Down
2 changes: 1 addition & 1 deletion mock_sirius_backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# our base image
FROM python:3.6-slim
FROM python:3.8-slim

WORKDIR /var/www/
COPY requirements.txt .
Expand Down
2 changes: 1 addition & 1 deletion mock_sirius_backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
connexion==2.7.0
Flask==2.2.5
markupsafe==2.0.1
markupsafe==2.1.1
requests

0 comments on commit fe6618a

Please sign in to comment.