Skip to content

Commit 280d6bb

Browse files
committed
[appveyor.yml] add Py3.6 64bit and Py3.8 64bit testing
1 parent dffd6bc commit 280d6bb

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

appveyor.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,25 @@ environment:
44
PYTHON_HOME: "C:\\Python36"
55
TOX_PY: py36
66

7+
- JOB: "3.6 64-bit"
8+
PYTHON_HOME: "C:\\Python36-x64"
9+
TOX_PY: py36
10+
711
- JOB: "3.7 64-bit"
812
PYTHON_HOME: "C:\\Python37-x64"
913
TOX_PY: py37
1014

15+
- JOB: "3.8 64-bit"
16+
PYTHON_HOME: "C:\\Python38-x64"
17+
TOX_PY: py38
18+
1119
install:
1220
# Prepend Python to the PATH of this build
1321
- "SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\\Scripts;%PATH%"
1422

1523
# check that we have the expected version and architecture for Python
1624
- "python --version"
17-
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
25+
- 'python -c "import struct; print(struct.calcsize(''P'') * 8)"'
1826

1927
# upgrade pip and setuptools to avoid out-of-date warnings
2028
- "python -m pip install --disable-pip-version-check --user --upgrade pip setuptools virtualenv"

0 commit comments

Comments
 (0)