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
3 changes: 2 additions & 1 deletion azure/azure-pr-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ extends:
post_deploy:
- template: templates/e2e.yml
parameters:
test_type: e2e
test_type: e2e
python_version: ${{ variables.python_version}}
8 changes: 8 additions & 0 deletions azure/azure-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,26 +40,31 @@ extends:
- template: templates/e2e.yml
parameters:
test_type: e2e
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}}
- environment: ref
post_deploy:
- template: templates/e2e.yml
parameters:
test_type: smoketest
python_version: ${{ variables.python_version}}
depends_on:
- internal_qa
- environment: int
Expand All @@ -68,6 +73,7 @@ extends:
parameters:
app_id: "84aa2219-7170-4279-93fb-3d37b89bbc01"
test_type: smoketest
python_version: ${{ variables.python_version}}
depends_on:
- internal_qa
- environment: sandbox
Expand All @@ -76,6 +82,7 @@ extends:
parameters:
app_id: "a50e2f01-ea28-41c9-8666-850c034ddd82"
test_type: smoketest
python_version: ${{ variables.python_version}}
depends_on:
- internal_qa
- environment: prod
Expand All @@ -84,6 +91,7 @@ extends:
parameters:
app_id: "72ada63b-9d70-4ca2-b9f2-cd1ce74c2dde"
test_type: smoketest
python_version: ${{ variables.python_version}}
depends_on:
- int
- ref
Expand Down
2 changes: 1 addition & 1 deletion azure/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ variables:
service_name: sync-wrap
service_base_path: sync-wrap
short_service_name: sync-wrap
python_version: 3.10
python_version: "3.10"
6 changes: 6 additions & 0 deletions azure/templates/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ parameters:
- name: app_id
type: string
default: ""
- name: python_version
default: ""

steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.10'
inputs:
versionSpec: '3.10'

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