From 58102ccf9875c87d9801f3022acfb3178e7b7e30 Mon Sep 17 00:00:00 2001 From: poruri sai rahul Date: Tue, 24 Sep 2019 12:58:44 +0100 Subject: [PATCH] FIX : Use the correct env name TOOLKITS PR #348 didnt broke the travis config for three jobs, which didnt use the updated TOOLKITS env var and were instead using the old TOOLKIT env var, which doesnt get picked up by the CI jobs. modified: .travis.yml --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 32b32ed06..dd4b0b154 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,9 +29,9 @@ matrix: - env: RUNTIME=2.7 TOOLKITS="wx" PILLOW='pillow' - env: RUNTIME=3.5 TOOLKITS="null pyqt pyqt5" PILLOW='pillow' - env: RUNTIME=3.6 TOOLKITS="null pyqt pyqt5" PILLOW='pillow' - - env: RUNTIME=2.7 TOOLKIT=null PILLOW='pillow<3.0.0' - - env: RUNTIME=3.5 TOOLKIT=null PILLOW='pillow<3.0.0' - - env: RUNTIME=3.6 TOOLKIT=null PILLOW='pillow<3.0.0' + - env: RUNTIME=2.7 TOOLKITS=null PILLOW='pillow<3.0.0' + - env: RUNTIME=3.5 TOOLKITS=null PILLOW='pillow<3.0.0' + - env: RUNTIME=3.6 TOOLKITS=null PILLOW='pillow<3.0.0' allow_failures: - env: RUNTIME=2.7 TOOLKITS="wx" PILLOW='pillow' fast_finish: true