From 9bf04f0d926c32d8348a5d8b893495749fa933fa Mon Sep 17 00:00:00 2001 From: Travis Kessler Date: Mon, 10 Jun 2019 20:33:10 -0400 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 azure-pipelines.yml 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'