diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..880d530 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,26 @@ +# 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' + +steps: +- task: UsePythonVersion@0 + inputs: + versionSpec: '3.7' + architecture: 'x64' + +- script: | + python -m pip install --upgrade pip setuptools wheel + python setup.py install + displayName: 'Install dependencies' + +- script: | + cd tests + python test_all.py + displayName: 'unittest'