ansible/.travis.yml

21 lines
483 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
addons:
apt:
sources:
- deadsnakes
packages:
- python2.4
install:
2015-06-29 17:30:00 +02:00
- pip install tox PyYAML Jinja2 sphinx
script:
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
after_success:
- coveralls