diff --git a/.travis.yml b/.travis.yml index d030e014f8c..9efa0fb60f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,26 +1,30 @@ sudo: false language: python -env: - - TOKENV=py24 - - TOXENV=py26 - - TOXENV=py27 - - TOXENV=py34 - - TOXENV=py35 +matrix: + include: + - env: TOXENV=py24 INTEGRATION=no + - env: TOXENV=py26 INTEGRATION=yes + python: 2.6 + - env: TOXENV=py27 INTEGRATION=yes + python: 2.7 + - env: TOXENV=py34 INTEGRATION=no + python: 3.4 + - env: TOXENV=py35 INTEGRATION=no + python: 3.5 addons: apt: sources: - deadsnakes packages: - python2.4 - - python3.5-dev install: - pip install tox PyYAML Jinja2 sphinx 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 -- source ./hacking/env-setup && cd test/integration/ && make test_var_precedence +- if test x"$INTEGRATION" = x'yes' ; then source ./hacking/env-setup && cd test/integration/ && make test_var_precedence ; fi after_success: - coveralls