Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
jobs:
- job: win32
timeoutInMinutes: 60
strategy:
matrix:
Py36-x86-win2016:
python.version: '3.6'
python.arch: 'x86'
vmImage: vs2017-win2016
Py37-x64-win2016:
python.version: '3.7'
python.arch: 'x64'
vmImage: vs2017-win2016
pool:
vmImage: $(vmImage)
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: '$(python.arch)'
- script: |
pip install --user -U setuptools pip
displayName: Install Dependencies
- script: |
pip install -e .
displayName: Build
- script: |
python runtests.py
displayName: Run tests