forked from pallets/flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.azure-pipelines.yml
53 lines (46 loc) · 1.09 KB
/
.azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
trigger:
- master
variables:
vmImage: ubuntu-latest
python.version: '3.7'
TOXENV: 'py,codecov'
python.architecture: 'x64'
strategy:
matrix:
Python37Linux:
python.version: '3.7'
Python37Windows:
python.version: '3.7'
vmImage: 'windows-latest'
Python37Mac:
python.version: '3.7'
vmImage: 'macos-latest'
Pypy3Linux:
python.version: 'pypy3'
Python36Linux:
python.version: '3.6'
Python35Linux:
python.version: '3.5'
Python27Linux:
python.version: '2.7'
Python27Windows:
python.version: '2.7'
vmImage: 'windows-latest'
DocsHtml:
TOXENV: docs-html
VersionRange:
TOXENV: devel,lowest,codecov
pool:
vmImage: $[ variables.vmImage ]
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: $(python.version)
architecture: $(python.architecture)
- script: pip install -U tox
displayName: 'Install tox'
- script: tox
displayName: 'Run tox'
# TODO: add codecov token
# TODO: emit JUnit test results
# TODO: build on nightly