File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff line change @@ -3,7 +3,16 @@ parameters:
33 type : boolean
44 default : false
55
6+ - name : python_version
7+ type : string
8+ default : ' '
9+
610steps :
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)
Original file line number Diff line number Diff line change @@ -32,5 +32,4 @@ pytest = "^8.2.0"
3232coverage = " ^5.5"
3333aiohttp = " ^3.10.11"
3434pytest-asyncio = " ^0.14.0"
35-
3635[tool .poetry .scripts ]
You can’t perform that action at this time.
0 commit comments