Skip to content

Commit d2d1835

Browse files
authored
Merge pull request #121 from dcrosta/azure-pipelines
adopt azure pipelines instead of travis
2 parents 91c4c19 + 31f6169 commit d2d1835

File tree

3 files changed

+37
-30
lines changed

3 files changed

+37
-30
lines changed

.travis.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

azure-pipelines.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
jobs:
2+
- job: 'Style'
3+
steps:
4+
- task: UsePythonVersion@0
5+
inputs:
6+
versionSpec: '3.7'
7+
architecture: 'x64'
8+
- script: |
9+
pip install tox
10+
tox -e style
11+
displayName: 'tox -e style'
12+
13+
- job: 'Test'
14+
pool:
15+
vmImage: 'ubuntu-16.04'
16+
strategy:
17+
matrix:
18+
Python27:
19+
python.version: '2.7'
20+
Python35:
21+
python.version: '3.5'
22+
Python36:
23+
python.version: '3.6'
24+
Python37:
25+
python.version: '3.7'
26+
maxParallel: 4
27+
28+
steps:
29+
- task: UsePythonVersion@0
30+
inputs:
31+
versionSpec: '$(python.version)'
32+
architecture: 'x64'
33+
34+
- script: |
35+
pip install tox tox-docker
36+
tox
37+
displayName: 'tox'

travis-constraints.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)