Skip to content

Commit

Permalink
Remove the 64bit environment from the basic AppVeyor test matrix. Cha…
Browse files Browse the repository at this point in the history
…nge the ``tox.ini`` template (``test_matrix_configurator=yes``) to allow overriding the interpreter (so that 64bit interpreter actually gets used on AppVeyor).
  • Loading branch information
ionelmc committed Jul 3, 2015
1 parent ad7dba1 commit 418d8ab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 37 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ Changelog

Use cookiecutter's ``--checkout`` options to use a specific version.

v1.8 (2015-07-03)
-----------------

* Remove the 64bit environment from the basic AppVeyor test matrix.
* Change the ``tox.ini`` template (``test_matrix_configurator=yes``) to allow overriding the
interpreter (so that 64bit interpreter actually gets used on AppVeyor).

v1.7.1 (2015-07-03)
-------------------

Expand Down
36 changes: 0 additions & 36 deletions {{cookiecutter.repo_name}}/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,72 +14,36 @@ environment:
PYTHON_HOME: "C:\\Python27"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
- TOXENV: "2.7"
TOXPYTHON: "C:\\Python27-x64\\python.exe"
WINDOWS_SDK_VERSION: "v7.0"
PYTHON_HOME: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
- TOXENV: "2.7-nocover"
TOXPYTHON: "C:\\Python27\\python.exe"
WINDOWS_SDK_VERSION: "v7.0"
PYTHON_HOME: "C:\\Python27"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
- TOXENV: "2.7-nocover"
TOXPYTHON: "C:\\Python27-x64\\python.exe"
WINDOWS_SDK_VERSION: "v7.0"
PYTHON_HOME: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
- TOXENV: "3.3"
TOXPYTHON: "C:\\Python33\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python33"
PYTHON_VERSION: "3.3"
PYTHON_ARCH: "32"
- TOXENV: "3.3"
TOXPYTHON: "C:\\Python33-x64\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python33-x64"
PYTHON_VERSION: "3.3"
PYTHON_ARCH: "64"
- TOXENV: "3.3-nocover"
TOXPYTHON: "C:\\Python33\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python33"
PYTHON_VERSION: "3.3"
PYTHON_ARCH: "32"
- TOXENV: "3.3-nocover"
TOXPYTHON: "C:\\Python33-x64\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python33-x64"
PYTHON_VERSION: "3.3"
PYTHON_ARCH: "64"
- TOXENV: "3.4"
TOXPYTHON: "C:\\Python34\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python34"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "32"
- TOXENV: "3.4"
TOXPYTHON: "C:\\Python34-x64\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python34-x64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
- TOXENV: "3.4-nocover"
TOXPYTHON: "C:\\Python34\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python34"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "32"
- TOXENV: "3.4-nocover"
TOXPYTHON: "C:\\Python34-x64\\python.exe"
WINDOWS_SDK_VERSION: "v7.1"
PYTHON_HOME: "C:\\Python34-x64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
init:
- "ECHO %TOXENV%"
- ps: "ls C:\\Python*"
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/ci/templates/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ deps = coverage

{% for env, config in tox_environments|dictsort %}
[testenv:{{ env }}]
basepython = {{ config.python }}
basepython = {env:TOXPYTHON:{{ config.python }}}
{% if config.cover or config.env_vars %}
setenv =
{[testenv]setenv}
Expand Down

0 comments on commit 418d8ab

Please sign in to comment.