summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-30 18:23:21 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-30 18:23:21 -0500
commit4d4d0c4a8225b68765043159043097dfabf642c0 (patch)
tree4a706337cb77717584f390752fd1e6870c103808 /azure-pipelines.yml
parent9da7398193702615344a113d93dda1314db53eb1 (diff)
downloadcmd2-git-4d4d0c4a8225b68765043159043097dfabf642c0.tar.gz
Only run a single nox session for each version of Python in GitHub Actions matrix
Also: - Temporarily disable dependency caching in GitHub Actions - For Azure Pipelines MacOs testing, add Python 3.9 and remove 3.5
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 5f58bc0d..8e5e170d 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -14,9 +14,6 @@ jobs:
# Run the pipeline with multiple Python versions
strategy:
matrix:
- Python35:
- python.version: '3.5'
- NOXSESSION: 'tests-3.5'
Python36:
python.version: '3.6'
NOXSESSION: 'tests-3.6'
@@ -26,6 +23,9 @@ jobs:
Python38:
python.version: '3.8'
NOXSESSION: 'tests-3.8'
+ Python39:
+ python.version: '3.9'
+ NOXSESSION: 'tests-3.9'
# Increase the maxParallel value to simultaneously run the job for all versions in the matrix (max 10 for free open-source)
maxParallel: 4