warcprox/.travis.yml

25 lines
333 B
YAML
Raw Normal View History

# http://docs.travis-ci.com/user/migrating-from-legacy/
sudo: false
2013-12-04 17:34:23 -08:00
language: python
2014-01-07 14:10:39 -08:00
python:
- 3.5
- 3.4
- 2.7
- nightly
- pypy
- pypy3
2014-01-07 12:04:52 -08:00
addons:
apt:
packages:
- python-gdbm
- python3-gdbm
2014-01-07 12:04:52 -08:00
2014-01-07 14:10:39 -08:00
before_script:
- pip install . pytest requests
2015-11-02 18:21:19 +00:00
script: py.test -v -s tests
2013-12-04 17:34:23 -08:00