This commit is contained in:
Jianjie Liu (MAIDAP) 2021-01-27 14:31:23 -05:00
Родитель b534f479ed
Коммит 67c12a3c82
3 изменённых файлов: 12 добавлений и 7 удалений

Просмотреть файл

@ -11,26 +11,33 @@ stages:
parameters:
pyVersion: '3.6'
- stage: run_full_test_matrix
- stage: run_unit_test_matrix
dependsOn: static_analysis
jobs:
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6', '3.7', '3.8']
pyVersions: ['3.6']
testTypes: ['unit', 'io']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'
- stage: run_e2e_test_matrix
dependsOn: static_analysis
jobs:
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['slow', 'azure']
testTypes: ['slow']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'
- stage: collect_final_code_coverage
dependsOn:
- run_unit_test_matrix
- run_e2e_test_matrix
jobs:
- job:
steps:
- template: templates/publish-cov.yml
# strategy:

Просмотреть файл

@ -1,5 +1,4 @@
# Template for publishing code coverage report
steps:
- task: PublishCodeCoverageResults@1
inputs:

Просмотреть файл

@ -1,5 +1,4 @@
# Template for publishing test result report
parameters:
- name: pyVersion
type: string