-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed the duplicated "macos_12" and the deprecated macos_11
Signed-off-by: Chin Yeung Li <tli@nexb.com>
- Loading branch information
1 parent
74eaa4e
commit 6df608c
Showing
1 changed file
with
85 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,92 @@ | ||
|
||
################################################################################ | ||
# We use Azure to run the full tests suites on multiple Python 3.x | ||
# on multiple Windows, macOS and Linux versions all on 64 bits | ||
# These jobs are using VMs with Azure-provided Python builds | ||
################################################################################ | ||
|
||
jobs: | ||
|
||
################################################################################ | ||
# These jobs are using VMs and Azure-provided Pythons 3.8 | ||
################################################################################ | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu20_cpython | ||
image_name: ubuntu-20.04 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu22_cpython | ||
image_name: ubuntu-22.04 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos11_cpython | ||
image_name: macOS-11 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos12_cpython | ||
image_name: macOS-12 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos13_cpython | ||
image_name: macOS-13 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos12_cpython | ||
image_name: macos-12 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-win.yml | ||
parameters: | ||
job_name: win2019_cpython | ||
image_name: windows-2019 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
test_suites: | ||
all: venv\Scripts\pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-win.yml | ||
parameters: | ||
job_name: win2022_cpython | ||
image_name: windows-2022 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
test_suites: | ||
all: venv\Scripts\pytest -n 2 -vvs | ||
|
||
|
||
################################################################################ | ||
# Tests using a plain pip install to get the latest of all wheels | ||
################################################################################ | ||
|
||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu20_cpython_latest_from_pip | ||
image_name: ubuntu-20.04 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10'] | ||
test_suites: | ||
all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e . && venv/bin/pytest -n 2 -vvs | ||
|
||
|
||
- template: etc/ci/azure-win.yml | ||
parameters: | ||
job_name: win2019_cpython_latest_from_pip | ||
image_name: windows-2019 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10'] | ||
test_suites: | ||
all: venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e . && venv\Scripts\pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos11_cpython_latest_from_pip | ||
image_name: macos-11 | ||
python_versions: ['3.7', '3.8', '3.9', '3.10'] | ||
test_suites: | ||
all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e . && venv/bin/pytest -n 2 -vvs | ||
################################################################################ | ||
# These jobs are using VMs and Azure-provided Pythons 3.8 | ||
################################################################################ | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu20_cpython | ||
image_name: ubuntu-20.04 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu22_cpython | ||
image_name: ubuntu-22.04 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos12_cpython | ||
image_name: macOS-12 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos13_cpython | ||
image_name: macOS-13 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-win.yml | ||
parameters: | ||
job_name: win2019_cpython | ||
image_name: windows-2019 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
test_suites: | ||
all: venv\Scripts\pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-win.yml | ||
parameters: | ||
job_name: win2022_cpython | ||
image_name: windows-2022 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
test_suites: | ||
all: venv\Scripts\pytest -n 2 -vvs | ||
|
||
################################################################################ | ||
# Tests using a plain pip install to get the latest of all wheels | ||
################################################################################ | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu20_cpython_latest_from_pip | ||
image_name: ubuntu-20.04 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10"] | ||
test_suites: | ||
all: | ||
venv/bin/pip install --upgrade-strategy eager --force-reinstall | ||
--upgrade -e . && venv/bin/pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-win.yml | ||
parameters: | ||
job_name: win2019_cpython_latest_from_pip | ||
image_name: windows-2019 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10"] | ||
test_suites: | ||
all: | ||
venv\Scripts\pip install --upgrade-strategy eager --force-reinstall | ||
--upgrade -e . && venv\Scripts\pytest -n 2 -vvs | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: macos11_cpython_latest_from_pip | ||
image_name: macos-11 | ||
python_versions: ["3.7", "3.8", "3.9", "3.10"] | ||
test_suites: | ||
all: | ||
venv/bin/pip install --upgrade-strategy eager --force-reinstall | ||
--upgrade -e . && venv/bin/pytest -n 2 -vvs |