From 15677747cf2977a652e2698535e7fd5f7689eb18 Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Wed, 2 Dec 2015 14:28:37 +0000 Subject: [PATCH] Don't use toxenv on appveyor, as it has no way of coping with 64-bit Python versions --- appveyor.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 823f07f30e2..c87d253c2cd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,31 +1,16 @@ environment: matrix: - PYTHON: "C:\\Python27" - TOXENV: "py27" - - PYTHON: "C:\\Python33" - TOXENV: "py33" - - PYTHON: "C:\\Python34" - TOXENV: "py34" - - PYTHON: "C:\\Python35" - TOXENV: "py35" - - PYTHON: "C:\\Python27-x64" - TOXENV: "py27" - - PYTHON: "C:\\Python33-x64" - TOXENV: "py33" - - PYTHON: "C:\\Python34-x64" - TOXENV: "py34" - - PYTHON: "C:\\Python35-x64" - TOXENV: "py35" install: cmd: "%PYTHON%\\python.exe -m pip install tox" build: off test_script: - - "%PYTHON%\\Scripts\\tox.exe -e %TOXENV% -- -m unit -n 8" + - "%PYTHON%\\Scripts\\tox.exe -e py -- -m unit -n 8"