-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic yml file for setup pipeline (will fail)
- Loading branch information
1 parent
29d1092
commit ace6c34
Showing
2 changed files
with
33 additions
and
53 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |