-
Notifications
You must be signed in to change notification settings - Fork 10
/
azure-pipelines.yml
59 lines (57 loc) · 1.48 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
variables:
deps.space: 'conda requests xonsh lazyasd tqdm ruamel.yaml pytest pytest-timeout virtualenv pip pytest-azurepipelines dataclasses pytest-console-scripts'
deps.comma: 'conda,requests,xonsh,lazyasd,tqdm,ruamel.yaml,pytest,pytest-timeout,virtualenv,pip,pytest-azurepipelines,dataclasses,pytest-console-scripts'
jobs:
- job: windows
pool:
vmImage: 'VS2017-Win2016'
strategy:
matrix:
python36:
python.version: '3.6'
# There is some weird issue with pytest-timeout not working
# on Python 3.7 on Windows
#python37:
# python.version: '3.7'
maxParallel: 4
steps:
- template: azure-steps.yml
parameters:
platform_deps_space: ""
platform_deps_comma: ""
pip_flags: ""
- job: mac
pool:
vmImage: 'macOS-10.13'
strategy:
matrix:
python36:
python.version: '3.6'
python37:
python.version: '3.7'
maxParallel: 4
steps:
- script: |
sudo chmod -R 777 /Users/runner/.conda
displayName: Fix for OSX directory permission
- template: azure-steps.yml
parameters:
platform_deps_space: ""
platform_deps_comma: ""
pip_flags: "--user"
- job: linux
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
python36:
python.version: '3.6'
python37:
python.version: '3.7'
maxParallel: 4
steps:
- template: azure-steps.yml
parameters:
platform_deps_space: " patchelf"
platform_deps_comma: ",patchelf"
pip_flags: ""