aboutsummaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2019-07-20 12:44:26 -0700
committerDavid Lord <davidism@gmail.com>2019-07-20 12:44:26 -0700
commitd04d9998d325db0e54d1cfa037542a30a6c8bcd6 (patch)
treed078929a24529646b41b64aded06b3fdec56b976 /.azure-pipelines.yml
parent0f5f2010bb10bb10a7f8ac93d0ba68294f07c413 (diff)
downloadjinja-d04d9998d325db0e54d1cfa037542a30a6c8bcd6.tar.gz
switch tests to azure pipelines
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml61
1 files changed, 61 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
new file mode 100644
index 00000000..48eb1503
--- /dev/null
+++ b/.azure-pipelines.yml
@@ -0,0 +1,61 @@
+trigger:
+ - master
+ - '*.x'
+
+variables:
+ vmImage: ubuntu-latest
+ python.version: 3.7
+ TOXENV: py,coverage-ci
+ hasTestResults: true
+
+strategy:
+ matrix:
+ Python 3.7 Linux:
+ vmImage: ubuntu-latest
+ Python 3.7 Windows:
+ vmImage: windows-latest
+ Python 3.7 Mac:
+ vmImage: macos-latest
+ PyPy 3 Linux:
+ python.version: pypy3
+ Python 3.6 Linux:
+ python.version: 3.6
+ Python 3.5 Linux:
+ python.version: 3.5
+ Python 2.7 Linux:
+ python.version: 2.7
+ Python 2.7 Windows:
+ python.version: 2.7
+ vmImage: windows-latest
+ Docs:
+ TOXENV: docs-html
+ hasTestResults: false
+
+pool:
+ vmImage: $[ variables.vmImage ]
+
+steps:
+ - task: UsePythonVersion@0
+ inputs:
+ versionSpec: $(python.version)
+ displayName: Use Python $(python.version)
+
+ - script: pip --disable-pip-version-check install -U tox
+ displayName: Install tox
+
+ - script: tox -s false -- --junit-xml=test-results.xml
+ displayName: Run tox
+
+ - task: PublishTestResults@2
+ inputs:
+ testResultsFiles: test-results.xml
+ testRunTitle: $(Agent.JobName)
+ condition: eq(variables['hasTestResults'], 'true')
+ displayName: Publish test results
+
+ - task: PublishCodeCoverageResults@1
+ inputs:
+ codeCoverageTool: Cobertura
+ summaryFileLocation: coverage.xml
+ condition: eq(variables['hasTestResults'], 'true')
+ displayName: Publish coverage results