ansible/.travis.yml

27 lines
709 B
YAML
Raw Normal View History

sudo: false
language: python
env:
2015-08-01 07:50:05 +02:00
- TOKENV=py24
- TOXENV=py26
- TOXENV=py27
- TOXENV=py34
2015-10-04 09:58:44 +02:00
- TOXENV=py35
addons:
apt:
sources:
- deadsnakes
packages:
- python2.4
- python3.5-dev
install:
2015-06-29 17:30:00 +02:00
- pip install tox PyYAML Jinja2 sphinx
script:
# urllib2's defaults are not secure enough for us
- ./test/code-smell/replace-urlopen.sh .
2015-08-01 07:50:05 +02:00
- 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
2015-07-01 16:23:26 +02:00
#- make -C docsite all
- source ./hacking/env-setup && cd test/integration/ && make test_var_precedence
after_success:
- coveralls