Skip to content

Commit 1f175b7

Browse files
committed
[appveyor.yml] add Py3.8 testing
1 parent 2653417 commit 1f175b7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

appveyor.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@ environment:
88
PYTHON_HOME: "C:\\Python37-x64"
99
TOX_PY: py37
1010

11+
- JOB: "3.8 64-bit"
12+
PYTHON_HOME: "C:\\Python38-x64"
13+
TOX_PY: py38
14+
1115
install:
1216
# Prepend Python to the PATH of this build
1317
- "SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\\Scripts;%PATH%"
1418

1519
# check that we have the expected version and architecture for Python
1620
- "python --version"
17-
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
21+
- 'python -c "import struct; print(struct.calcsize(''P'') * 8)"'
1822

1923
# upgrade pip and setuptools to avoid out-of-date warnings
2024
- "python -m pip install --disable-pip-version-check --user --upgrade pip setuptools virtualenv"
@@ -36,4 +40,4 @@ branches:
3640
- /^v\d+\.\d+.*$/
3741

3842
test_script:
39-
- "tox -e %TOX_PY%"
43+
- "tox -e %TOX_PY%"

0 commit comments

Comments
 (0)