warcprox/.travis.yml

22 lines
349 B
YAML
Raw Normal View History

2013-12-04 17:34:23 -08:00
# vim: set sw=4 et:
#
2014-01-07 14:10:39 -08:00
# tox approach stolen from
# https://github.com/pypa/pip/blob/abdb597dbfb51b21cc76c1cff068b72c80f3a77d/.travis.yml
#
2013-12-04 17:34:23 -08:00
language: python
2014-01-07 14:10:39 -08:00
env:
- TOXENV=py27
- TOXENV=py34
2014-01-07 12:04:52 -08:00
before_install:
- sudo apt-get update
- sudo apt-get -y install python-gdbm python3-gdbm
2014-01-07 12:04:52 -08:00
2014-01-07 14:10:39 -08:00
before_script:
- pip install tox
2014-01-07 14:10:39 -08:00
script: tox
2013-12-04 17:34:23 -08:00