From 9802c006a2fb309a0941305ac72573405c86e098 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 13 Oct 2015 09:17:57 +0300 Subject: [PATCH] Typo: TOKENV -> TOXENV This is purely cosmetic: the logic worked correctly, since tox never saw the TOKENV environment variable. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0c3e686b3fe..9efa0fb60f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ sudo: false language: python matrix: include: - - env: TOKENV=py24 INTEGRATION=no + - env: TOXENV=py24 INTEGRATION=no - env: TOXENV=py26 INTEGRATION=yes python: 2.6 - env: TOXENV=py27 INTEGRATION=yes @@ -22,8 +22,8 @@ install: script: # urllib2's defaults are not secure enough for us - ./test/code-smell/replace-urlopen.sh . -- if test x"$TOKENV" != x'py24' ; then tox ; fi -- if test x"$TOKENV" = x'py24' ; then python2.4 -V && python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce).py' lib/ansible/module_utils ; fi +- if test x"$TOXENV" != x'py24' ; then tox ; fi +- if test x"$TOXENV" = x'py24' ; then python2.4 -V && python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce).py' lib/ansible/module_utils ; fi #- make -C docsite all - if test x"$INTEGRATION" = x'yes' ; then source ./hacking/env-setup && cd test/integration/ && make test_var_precedence ; fi after_success: