-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
26 lines (22 loc) · 926 Bytes
/
azure-pipelines.yml
File metadata and controls
26 lines (22 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
################################################################################
# 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:
- template: etc/ci/azure-posix.yml
parameters:
job_name: run_code_checks
image_name: ubuntu-24.04
python_versions: ['3.13']
test_suites:
all: make check
- template: etc/ci/azure-posix.yml
parameters:
job_name: ubuntu24_cpython
image_name: ubuntu-24.04
python_versions: ['3.10', '3.11', '3.12', '3.13', '3.14']
test_suites:
all: |
sudo apt-get install universal-ctags gettext
venv/bin/pytest -n 2 -vvs