Skip to content

Commit

Permalink
Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
Adds a job for Python 3.6/x86 and 3.7/x64 on Windows Server 2016.
  • Loading branch information
lazka committed Jul 31, 2019
1 parent 030c84a commit afd8941
Showing 1 changed file with 29 additions and 0 deletions.
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

0 comments on commit afd8941

Please sign in to comment.