From 02d8f02f59bc60895fd30773699dd7382e7a3a79 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 20 May 2017 15:41:07 -0400 Subject: [PATCH] build: Don't double-test on appveyor Pointed out in #2028 --- appveyor.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 412369c51..258a660be 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,18 +9,22 @@ environment: - PYTHON: "C:\\Python35" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "32" + TOX_ENV: "py35" - PYTHON: "C:\\Python35-x64" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "64" + TOX_ENV: "py35" - PYTHON: "C:\\Python36" PYTHON_VERSION: "3.6.x" PYTHON_ARCH: "32" + TOX_ENV: "py36" - PYTHON: "C:\\Python36-x64" PYTHON_VERSION: "3.6.x" PYTHON_ARCH: "64" + TOX_ENV: "py36" install: # Make sure the right python version is first on the PATH. @@ -44,7 +48,7 @@ test_script: # but for now it lets us avoid duplication with .travis.yml and tox.ini. # Running "py3x-full" would be nice but it's failing on installing # dependencies with no useful logs. - - "tox -e py35,py36 --skip-missing-interpreters" + - "tox -e %TOX_ENV%" after_test: # If tests are successful, create binary packages for the project. -- 2.47.2