Skip to content

Commit e65b33b

Browse files
committed
Add 3.5 envs again.
1 parent 6ee2070 commit e65b33b

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

appveyor.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,30 @@ environment:
8080
PYTHON_HOME: "C:\\Python34-x64"
8181
PYTHON_VERSION: "3.4"
8282
PYTHON_ARCH: "64"
83+
- TOXENV: "3.5,codecov"
84+
TOXPYTHON: "C:\\Python35\\python.exe"
85+
WINDOWS_SDK_VERSION: "v7.1"
86+
PYTHON_HOME: "C:\\Python35"
87+
PYTHON_VERSION: "3.5"
88+
PYTHON_ARCH: "32"
89+
- TOXENV: "3.5,codecov"
90+
TOXPYTHON: "C:\\Python35-x64\\python.exe"
91+
WINDOWS_SDK_VERSION: "v7.1"
92+
PYTHON_HOME: "C:\\Python35-x64"
93+
PYTHON_VERSION: "3.5"
94+
PYTHON_ARCH: "64"
95+
- TOXENV: "3.5-nocover"
96+
TOXPYTHON: "C:\\Python35\\python.exe"
97+
WINDOWS_SDK_VERSION: "v7.1"
98+
PYTHON_HOME: "C:\\Python35"
99+
PYTHON_VERSION: "3.5"
100+
PYTHON_ARCH: "32"
101+
- TOXENV: "3.5-nocover"
102+
TOXPYTHON: "C:\\Python35-x64\\python.exe"
103+
WINDOWS_SDK_VERSION: "v7.1"
104+
PYTHON_HOME: "C:\\Python35-x64"
105+
PYTHON_VERSION: "3.5"
106+
PYTHON_ARCH: "64"
83107
init:
84108
- "ECHO %TOXENV%"
85109
- ps: "ls C:\\Python*"

ci/templates/appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
PYTHON_HOME: "C:\\Python27"
99
PYTHON_VERSION: "2.7"
1010
PYTHON_ARCH: "32"
11-
{% for env, config in tox_environments|dictsort %}{% if env.startswith('2.7') or env.startswith('3.4') or env.startswith('3.3') %}
11+
{% for env, config in tox_environments|dictsort %}{% if env.startswith(('2.7', '3.3', '3.4', '3.5')) %}
1212
- TOXENV: "{{ env }}{% if config.cover %},codecov{% endif %}"
1313
TOXPYTHON: "C:\\Python{{ env[:3].replace('.', '') }}\\python.exe"
1414
WINDOWS_SDK_VERSION: "v7.{{ '1' if env[0] == '3' else '0' }}"

0 commit comments

Comments
 (0)