aboutsummaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml42
1 files changed, 0 insertions, 42 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
deleted file mode 100644
index 56596119..00000000
--- a/.azure-pipelines.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-trigger:
- - master
- - '*.x'
-
-variables:
- vmImage: ubuntu-latest
- python.version: '3.8'
- TOXENV: py
-
-strategy:
- matrix:
- Python 3.8 Linux:
- vmImage: ubuntu-latest
- Python 3.8 Windows:
- vmImage: windows-latest
- Python 3.8 Mac:
- vmImage: macos-latest
- Python 3.7 Linux:
- python.version: '3.7'
- Python 3.6 Linux:
- python.version: '3.6'
- PyPy 3 Linux:
- python.version: pypy3
- Docs:
- TOXENV: docs
- Style:
- TOXENV: style
-
-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
- displayName: Run tox