diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..325074af7 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,44 @@ +# 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 + +jobs: + +- job: "Tox" + + pool: + vmImage: 'ubuntu-16.04' + + steps: + - task: UsePythonVersion@0 + displayName: 'Use Python $(python.version)' + inputs: + versionSpec: '3.7' + + - script: pip install tox + displayName: 'Install Tox' + + - script: tox + displayName: 'Run Tox' + + +- job: "JQ" + + pool: + vmImage: 'ubuntu-16.04' + + steps: + - task: UsePythonVersion@0 + displayName: 'Use Python $(python.version)' + inputs: + versionSpec: '$(python.version)' + + - script: apt-get install jq + displayName: 'Install JQ' + + - script: "cat **/*.json | jq" + displayName: 'Run JQ'