Skip to content

Commit 148aae9

Browse files
committed
Use double quotes for Windows
Otherwise CI test fails with pytest markers Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 60ecee5 commit 148aae9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

azure-pipelines.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -21,84 +21,84 @@ jobs:
2121
image_name: ubuntu-24.04
2222
python_versions: ['3.10']
2323
test_suites:
24-
all: venv/bin/pytest -n 2 -vvs -m 'online'
24+
all: venv/bin/pytest -n 2 -vvs -m "online"
2525

2626
- template: etc/ci/azure-win.yml
2727
parameters:
2828
job_name: online_win2022_cpython
2929
image_name: windows-2022
3030
python_versions: ['3.10']
3131
test_suites:
32-
all: venv\Scripts\pytest -n 2 -vvs -m 'online'
32+
all: venv\Scripts\pytest -n 2 -vvs -m "online"
3333

3434
- template: etc/ci/azure-posix.yml
3535
parameters:
3636
job_name: online_macos14_cpython
3737
image_name: macOS-14
3838
python_versions: ['3.10']
3939
test_suites:
40-
all: venv/bin/pytest -n 2 -vvs -m 'online'
40+
all: venv/bin/pytest -n 2 -vvs -m "online"
4141

4242
- template: etc/ci/azure-posix.yml
4343
parameters:
4444
job_name: ubuntu22_cpython
4545
image_name: ubuntu-22.04
4646
python_versions: ['3.9', '3.10', '3.11', '3.12']
4747
test_suites:
48-
all: venv/bin/pytest -n 2 -vvs -m 'not online'
48+
all: venv/bin/pytest -n 2 -vvs -m "not online"
4949

5050
- template: etc/ci/azure-posix.yml
5151
parameters:
5252
job_name: ubuntu24_cpython
5353
image_name: ubuntu-24.04
5454
python_versions: ['3.9', '3.10', '3.11', '3.12']
5555
test_suites:
56-
all: venv/bin/pytest -n 2 -vvs -m 'not online'
56+
all: venv/bin/pytest -n 2 -vvs -m "not online"
5757

5858
- template: etc/ci/azure-posix.yml
5959
parameters:
6060
job_name: macos13_cpython
6161
image_name: macOS-13
6262
python_versions: ['3.9', '3.10', '3.11', '3.12']
6363
test_suites:
64-
all: venv/bin/pytest -n 2 -vvs -m 'not online'
64+
all: venv/bin/pytest -n 2 -vvs -m "not online"
6565

6666
- template: etc/ci/azure-posix.yml
6767
parameters:
6868
job_name: macos14_cpython
6969
image_name: macOS-14
7070
python_versions: ['3.9', '3.10', '3.11', '3.12']
7171
test_suites:
72-
all: venv/bin/pytest -n 2 -vvs -m 'not online'
72+
all: venv/bin/pytest -n 2 -vvs -m "not online"
7373

7474
- template: etc/ci/azure-posix.yml
7575
parameters:
7676
job_name: macos15_cpython
7777
image_name: macOS-15
7878
python_versions: ['3.9', '3.10', '3.11', '3.12']
7979
test_suites:
80-
all: venv/bin/pytest -n 2 -vvs -m 'not online'
80+
all: venv/bin/pytest -n 2 -vvs -m "not online"
8181

8282
- template: etc/ci/azure-win.yml
8383
parameters:
8484
job_name: win2019_cpython
8585
image_name: windows-2019
8686
python_versions: ['3.9', '3.10', '3.11', '3.12']
8787
test_suites:
88-
all: venv\Scripts\pytest -n 2 -vvs -m 'not online'
88+
all: venv\Scripts\pytest -n 2 -vvs -m "not online"
8989

9090
- template: etc/ci/azure-win.yml
9191
parameters:
9292
job_name: win2022_cpython
9393
image_name: windows-2022
9494
python_versions: ['3.9', '3.10', '3.11', '3.12']
9595
test_suites:
96-
all: venv\Scripts\pytest -n 2 -vvs -m 'not online'
96+
all: venv\Scripts\pytest -n 2 -vvs -m "not online"
9797

9898
- template: etc/ci/azure-win.yml
9999
parameters:
100100
job_name: win2025_cpython
101101
image_name: windows-2025
102102
python_versions: ['3.9', '3.10', '3.11', '3.12']
103103
test_suites:
104-
all: venv\Scripts\pytest -n 2 -vvs -m 'not online'
104+
all: venv\Scripts\pytest -n 2 -vvs -m "not online"

0 commit comments

Comments
 (0)