We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 91c4c19 + 31f6169 commit d2d1835Copy full SHA for d2d1835
.travis.yml
azure-pipelines.yml
@@ -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
29
30
31
+ versionSpec: '$(python.version)'
32
33
34
35
+ pip install tox tox-docker
36
+ tox
37
+ displayName: 'tox'
travis-constraints.txt
0 commit comments