Merge branch 'master' of github:microsoft/dowhy

This commit is contained in:
Amit Sharma 2019-07-16 17:36:37 +05:30
Родитель 1260fd9742 6349d6a6d5
Коммит cc48d90149
1 изменённых файлов: 34 добавлений и 0 удалений

34
azure-pipelines.yml Normal file
Просмотреть файл

@ -0,0 +1,34 @@
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: |
pip install pytest pytest-azurepipelines
pytest
displayName: 'pytest'