]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
build: Don't double-test on appveyor 2050/head
authorBen Darnell <ben@bendarnell.com>
Sat, 20 May 2017 19:41:07 +0000 (15:41 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 20 May 2017 19:41:07 +0000 (15:41 -0400)
Pointed out in #2028

appveyor.yml

index 412369c516cf98da7d458837d027e0e15c851328..258a660bead54f8910bfc03a5ed4499644af66e7 100644 (file)
@@ -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.