-
Notifications
You must be signed in to change notification settings - Fork 0
/
.azure-pipelines.yml
90 lines (87 loc) · 2.75 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
jobs:
- job: 'Windows'
pool:
vmImage: 'windows-latest'
strategy:
matrix:
Python35_x86:
python.version: '3.5'
python.architecture: 'x86'
Python35_x64:
python.version: '3.5'
python.architecture: 'x64'
Python36_x86:
python.version: '3.6'
python.architecture: 'x86'
Python36_x64:
python.version: '3.6'
python.architecture: 'x64'
Python37_x86:
python.version: '3.7'
python.architecture: 'x86'
Python37_x64:
python.version: '3.7'
python.architecture: 'x64'
Python38_x86:
python.version: '3.8'
python.architecture: 'x86'
Python38_x64:
python.version: '3.8'
python.architecture: 'x64'
PyPy3:
python.version: 'pypy3'
python.architecture: 'x86'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: '$(python.architecture)'
- script: python -m pip install --upgrade pip setuptools
displayName: 'Install packaging tools'
- script: python -m pip install --upgrade codecov
displayName: 'Install codecov'
- script: python -m pip install --force-reinstall -r requirements-tests.txt
displayName: 'Install tests requirements'
- script: pytest
displayName: 'Run tests'
- script: python -m doctest README.md
displayName: 'Run doctests'
- script: python -m codecov -f coverage.xml -X gcov
condition: succeeded()
displayName: 'Upload coverage'
env:
CODECOV_TOKEN: $(CODECOV_TOKEN)
- job: 'MacOS'
pool:
vmImage: 'macOS-latest'
strategy:
matrix:
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
PyPy3:
python.version: 'pypy3'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
- script: python -m pip install --upgrade pip setuptools
displayName: 'Install packaging tools'
- script: python -m pip install --upgrade codecov
displayName: 'Install codecov'
- script: python -m pip install --force-reinstall -r requirements-tests.txt
displayName: 'Install tests requirements'
- script: pytest
displayName: 'Run tests'
- script: python -m doctest README.md
displayName: 'Run doctests'
- script: python -m codecov -f coverage.xml -X gcov
condition: succeeded()
displayName: 'Upload coverage'
env:
CODECOV_TOKEN: $(CODECOV_TOKEN)