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-pr-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ extends:
- template: templates/e2e.yml
parameters:
test_type: e2e
python_version: ${{ variables.python_version }}

4 changes: 4 additions & 0 deletions azure/azure-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,22 @@ extends:
- template: templates/e2e.yml
parameters:
test_type: smoketest
python_version: ${{ variables.python_version }}
- environment: internal-dev-sandbox
post_deploy:
- template: templates/e2e.yml
parameters:
test_type: smoketest
python_version: ${{ variables.python_version }}
- environment: internal-qa
post_deploy:
- template: templates/e2e.yml
parameters:
test_type: e2e
python_version: ${{ variables.python_version }}
- environment: internal-qa-sandbox
post_deploy:
- template: templates/e2e.yml
parameters:
test_type: smoketest
python_version: ${{ variables.python_version }}
8 changes: 8 additions & 0 deletions azure/templates/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
parameters:
- name: test_type

- name: python_version
type: string
default: ''

steps:
- task: UsePythonVersion@0
displayName: "Use Python ${{ parameters.python_version }}"
inputs:
versionSpec: ${{ parameters.python_version }}

- task: s3-cache-action@1
inputs:
Expand Down