Skip to content

Commit

Permalink
appveyor 64 bit only
Browse files Browse the repository at this point in the history
  • Loading branch information
nraw committed Mar 10, 2020
1 parent 30b0810 commit 44e439d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 36 deletions.
28 changes: 3 additions & 25 deletions .appveyor.yml
Expand Up @@ -3,48 +3,26 @@ build: off
environment:
matrix:
- TOXENV: check
TOXPYTHON: C:\Python36\python.exe
PYTHON_HOME: C:\Python36
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '32'
- TOXENV: py36-cover,codecov
TOXPYTHON: C:\Python36\python.exe
PYTHON_HOME: C:\Python36
TOXPYTHON: C:\Python36-x64\python.exe
PYTHON_HOME: C:\Python36-64
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '32'
PYTHON_ARCH: '64'
- TOXENV: py36-cover,codecov
TOXPYTHON: C:\Python36-x64\python.exe
PYTHON_HOME: C:\Python36-x64
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '64'
- TOXENV: py36-nocov
TOXPYTHON: C:\Python36\python.exe
PYTHON_HOME: C:\Python36
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '32'
WHEEL_PATH: .tox/dist
- TOXENV: py36-nocov
TOXPYTHON: C:\Python36-x64\python.exe
PYTHON_HOME: C:\Python36-x64
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '64'
WHEEL_PATH: .tox/dist
- TOXENV: py37-cover,codecov
TOXPYTHON: C:\Python37\python.exe
PYTHON_HOME: C:\Python37
PYTHON_VERSION: '3.7'
PYTHON_ARCH: '32'
- TOXENV: py37-cover,codecov
TOXPYTHON: C:\Python37-x64\python.exe
PYTHON_HOME: C:\Python37-x64
PYTHON_VERSION: '3.7'
PYTHON_ARCH: '64'
- TOXENV: py37-nocov
TOXPYTHON: C:\Python37\python.exe
PYTHON_HOME: C:\Python37
PYTHON_VERSION: '3.7'
PYTHON_ARCH: '32'
WHEEL_PATH: .tox/dist
- TOXENV: py37-nocov
TOXPYTHON: C:\Python37-x64\python.exe
PYTHON_HOME: C:\Python37-x64
Expand Down
14 changes: 3 additions & 11 deletions ci/templates/.appveyor.yml
Expand Up @@ -3,20 +3,12 @@ build: off
environment:
matrix:
- TOXENV: check
TOXPYTHON: C:\Python36\python.exe
PYTHON_HOME: C:\Python36
TOXPYTHON: C:\Python36-x64\python.exe
PYTHON_HOME: C:\Python36-x64
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '32'
PYTHON_ARCH: '64'
{% for env, config in tox_environments|dictsort %}
{% if env.startswith(('py2', 'py3')) %}
- TOXENV: {{ env }}{% if config.cover %},codecov{% endif %}{{ "" }}
TOXPYTHON: C:\Python{{ env[2:4] }}\python.exe
PYTHON_HOME: C:\Python{{ env[2:4] }}
PYTHON_VERSION: '{{ env[2] }}.{{ env[3] }}'
PYTHON_ARCH: '32'
{% if 'nocov' in env %}
WHEEL_PATH: .tox/dist
{% endif %}
- TOXENV: {{ env }}{% if config.cover %},codecov{% endif %}{{ "" }}
TOXPYTHON: C:\Python{{ env[2:4] }}-x64\python.exe
PYTHON_HOME: C:\Python{{ env[2:4] }}-x64
Expand Down

0 comments on commit 44e439d

Please sign in to comment.