Skip to content

Commit 1a0fff3

Browse files
committed
AppVeyor: Python 2.7 and 3.7 from html5lib#576
1 parent a546ca3 commit 1a0fff3

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

.appveyor.yml

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
1+
# appveyor.yml - https://www.appveyor.com/docs/lang/python
2+
# https://www.appveyor.com/docs/windows-images-software/#visual-studio-2019
3+
# https://www.appveyor.com/docs/windows-images-software/#visual-studio-2022
4+
---
15
image: Visual Studio 2019
26
environment:
3-
global:
4-
PATH: "C:\\Python27\\Scripts\\;%PATH%"
57
matrix:
6-
- TOXENV: py27-base
7-
- TOXENV: py27-optional
8-
- TOXENV: py35-base
9-
- TOXENV: py35-optional
10-
- TOXENV: py36-base
11-
- TOXENV: py36-optional
8+
- PY_PYTHON: 2.7
9+
TOXENV: py27-base
10+
- PY_PYTHON: 2.7
11+
TOXENV: py27-optional
12+
- PY_PYTHON: 3.7
13+
TOXENV: py37-base
14+
- PY_PYTHON: 3.7
15+
TOXENV: py37-optional
1216

1317
install:
1418
- git submodule update --init --recursive
15-
- python -m pip install tox
19+
- py --list
20+
- py -VV
21+
- py -m pip install --upgrade pip
22+
- py -m pip install tox
1623

1724
build: off
1825

1926
test_script:
20-
- tox
27+
- py -m tox
2128

2229
after_test:
2330
- python debug-info.py

.github/workflows/python-tox.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10+
# 2.7 and 3.7 run on Windows via AppVeyor
1011
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1112
os: [ubuntu-latest, windows-latest]
1213
deps: [base, optional]

0 commit comments

Comments
 (0)