forked from explosion/spacy-stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
46 lines (37 loc) · 980 Bytes
/
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
trigger:
batch: true
branches:
include:
- '*'
jobs:
- job: 'Test'
strategy:
matrix:
# Only test on one OS with one version to speed tests up (since they need
# to download models)
# Python36Linux:
# imageName: 'ubuntu-16.04'
# python.version: '3.6'
# Currently not working because installing PyTorch fails
# Python36Windows:
# imageName: 'vs2017-win2016'
# python.version: '3.6'
Python36Mac:
imageName: 'macos-10.15'
python.version: '3.6'
maxParallel: 4
pool:
vmImage: $(imageName)
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: python -m pytest tests
displayName: 'Run tests'
- script: python setup.py sdist
displayName: 'Test sdist'