Skip to content

Commit

Permalink
Small format change
Browse files Browse the repository at this point in the history
  • Loading branch information
Jianjie Liu (MAIDAP) committed Jan 28, 2021
1 parent cac5394 commit 8d8b12d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
42 changes: 21 additions & 21 deletions devops/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,39 +12,39 @@ stages:
pool:
vmImage: 'ubuntu-latest'
steps:
- template: templates/base/run-linter.yml
parameters:
pyVersion: '3.6'
- template: templates/base/run-linter.yml
parameters:
pyVersion: '3.6'

- stage: unit_tests
dependsOn: static_analysis
jobs:
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['unit', 'io']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['unit', 'io']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'

- stage: e2e_tests
dependsOn: static_analysis
jobs:
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['azure']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['azure']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'

- stage: collect_final_code_coverage
dependsOn:
- unit_tests
- e2e_tests
- unit_tests
- e2e_tests
jobs:
- template: templates/merge-cov-reports.yml
- template: templates/merge-cov-reports.yml

- stage: publish_artifacts
jobs:
- job: archive_wheel_and_sdist
pool:
vmImage: 'ubuntu-latest'
steps:
- template: templates/build_wheel_n_sdist.yml
- job: archive_wheel_and_sdist
pool:
vmImage: 'ubuntu-latest'
steps:
- template: templates/build_wheel_n_sdist.yml
28 changes: 14 additions & 14 deletions devops/pr-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pr:
- main

variables:
- group: azureResourceKeys
- group: azureResourceKeys

stages:
- stage: static_analysis
Expand All @@ -22,24 +22,24 @@ stages:
- stage: unit_tests
dependsOn: static_analysis
jobs:
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['unit']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['unit']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'

- stage: e2e_tests
dependsOn: static_analysis
jobs:
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['io']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'
- template: templates/run-tests-on-multiple-os-py.yml
parameters:
pyVersions: ['3.6']
testTypes: ['io']
imageOSs: ['ubuntu-18.04'] # 'windows-latest', 'macos-latest'

- stage: collect_final_code_coverage
dependsOn:
- unit_tests
- e2e_tests
- unit_tests
- e2e_tests
jobs:
- template: templates/merge-cov-reports.yml
- template: templates/merge-cov-reports.yml

0 comments on commit 8d8b12d

Please sign in to comment.