Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions azure/azure-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ extends:
parameters:
service_name: ${{ variables.service_name }}
short_service_name: ${{ variables.short_service_name }}
python_version: ${{ variables.python_version }}
4 changes: 4 additions & 0 deletions azure/azure-pr-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ extends:
- environment: internal-dev
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: internal-dev-sandbox
proxy_path: sandbox
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
14 changes: 14 additions & 0 deletions azure/azure-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,27 +35,41 @@ extends:
- environment: internal-dev
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: internal-dev-sandbox
proxy_path: sandbox
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: internal-qa
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: internal-qa-sandbox
proxy_path: sandbox
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: ref
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: sandbox
proxy_path: sandbox
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: int
post_deploy:
- template: ./templates/run-smoke-tests.yml
parameters:
python_version: ${{ variables.python_version }}
- environment: prod
depends_on:
- internal_qa
Expand Down
1 change: 1 addition & 0 deletions azure/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ variables:
service_name: nrl-consumer-api
short_service_name: nca
service_base_path: record-locator/consumer
python_version: 3.8
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"
repository = "https://github.com/NHSDigital/nrl-consumer-api"
homepage = "https://digital.nhs.uk/developer/api-catalogue/national-record-locator-fhir/v3/consumer"
keywords = ["healthcare", "uk", "nhs"] #TODO add additional keywords

package-mode = false

[tool.poetry.dependencies]
python = "^3.8"
Expand Down
Loading