Skip to content

Commit be53f0b

Browse files
authored
Merge pull request #57 from NHSDigital/APM-6800-Software-updates
APM-6800
2 parents 78bbe78 + 90510f8 commit be53f0b

6 files changed

Lines changed: 1128 additions & 2730 deletions

File tree

azure/azure-pr-pipeline.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ extends:
3737
- environment: internal-dev
3838
post_deploy:
3939
- template: ./templates/run-smoke-tests.yml
40+
parameters:
41+
python_version: ${{ variables.python_version }}
4042
# - environment: internal-dev-sandbox
4143
# proxy_path: sandbox
4244
# post_deploy:

azure/templates/run-smoke-tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,16 @@ parameters:
33
type: boolean
44
default: false
55

6+
- name: python_version
7+
type: string
8+
default: ''
9+
610
steps:
11+
- task: UsePythonVersion@0
12+
displayName: "Use Python ${{ parameters.python_version }}"
13+
inputs:
14+
versionSpec: ${{ parameters.python_version }}
15+
716
- bash: |
817
make install-python
918
workingDirectory: $(Pipeline.Workspace)/s/$(SERVICE_NAME)/$(SERVICE_ARTIFACT_NAME)

0 commit comments

Comments
 (0)