From: Ben Darnell Date: Sat, 20 May 2017 19:41:07 +0000 (-0400) Subject: build: Don't double-test on appveyor X-Git-Tag: v5.0.0~84^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02d8f02f59bc60895fd30773699dd7382e7a3a79;p=thirdparty%2Ftornado.git build: Don't double-test on appveyor Pointed out in #2028 --- 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.