-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed ubuntu18_cpython and python36 as these are deprecated
Signed-off-by: Chin Yeung Li <[email protected]>
- Loading branch information
1 parent
a36dcf4
commit 59e7a4c
Showing
1 changed file
with
7 additions
and
17 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,23 +1,13 @@ | ||
|
||
################################################################################ | ||
# We use Azure to run the full tests suites on Python 3.6 -> 3.10 | ||
# on Linux | ||
################################################################################ | ||
|
||
jobs: | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu18_cpython | ||
image_name: ubuntu-18.04 | ||
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs tests/ | ||
|
||
- template: etc/ci/azure-posix.yml | ||
parameters: | ||
job_name: ubuntu20_cpython | ||
image_name: ubuntu-20.04 | ||
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10'] | ||
test_suites: | ||
all: venv/bin/pytest -n 2 -vvs tests/ | ||
- 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 tests/ |