Skip to content

Commit

Permalink
Add Azure Pipelines example
Browse files Browse the repository at this point in the history
  • Loading branch information
vtbassmatt committed Nov 12, 2019
1 parent e25d7b3 commit b966916
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Azure Pipelines configuration

trigger:
- master

pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'

- script: |
python -m pip install --upgrade pip
pip install coverage
displayName: 'Install coverage'

- script: |
coverage run tests.py
displayName: 'Run tests'

- script: |
bash <(curl -s https://codecov.io/bash)
displayName: 'Upload to codecov.io'

0 comments on commit b966916

Please sign in to comment.