2015-03-11 00:38:37 +01:00
sudo : false
language : python
2015-10-12 08:21:24 +02:00
matrix :
include :
2015-10-13 08:17:57 +02:00
- env : TOXENV=py24 INTEGRATION=no
2015-10-12 08:21:24 +02:00
- 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
2015-05-08 18:34:19 +02:00
addons :
apt :
sources :
- deadsnakes
2015-08-01 05:01:43 +02:00
packages :
- python2.4
2015-03-11 00:38:37 +01:00
install :
2015-06-29 17:30:00 +02:00
- pip install tox PyYAML Jinja2 sphinx
2015-03-11 00:38:37 +01:00
script :
2015-09-15 16:58:52 +02:00
# urllib2's defaults are not secure enough for us
- ./test/code-smell/replace-urlopen.sh .
2015-10-20 03:39:15 +02:00
- ./test/code-smell/use-compat-six.sh lib
- ./test/code-smell/boilerplate.sh
2015-12-09 17:23:45 +01:00
- ./test/code-smell/required-and-default-attributes.sh
2015-10-13 08:17:57 +02:00
- 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
2015-07-01 16:23:26 +02:00
#- make -C docsite all
2015-10-22 17:52:21 +02:00
- if test x"$INTEGRATION" = x'yes' ; then source ./hacking/env-setup && cd test/integration/ && make parsing && make test_var_precedence && make unicode ; fi
2015-03-11 00:38:37 +01:00
after_success :
- coveralls