Skip to content

Commit

Permalink
Add basic yml file for setup pipeline (will fail)
Browse files Browse the repository at this point in the history
  • Loading branch information
menshikh-iv committed May 4, 2020
1 parent 29d1092 commit ace6c34
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 53 deletions.
53 changes: 0 additions & 53 deletions .travis.yml

This file was deleted.

33 changes: 33 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
trigger:
- master
- develop

pool:
vmImage: 'vs2017-win2016'

strategy:
matrix:
py36:
python.version: '3.6'
TOXENV: "py36-win"
py37:
python.version: '3.7'
TOXENV: "py37-win"
py38:
python.version: '3.8'
TOXENV: "py38-win"

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'

- script: |
python -m pip install --upgrade pip
python -m pip install tox
displayName: 'Install tox'

- script: |
tox -vv
displayName: 'Testing'

0 comments on commit ace6c34

Please sign in to comment.