2015-10-30 23:07:01 +00:00
|
|
|
# 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
|
|
|
|
2015-10-30 23:07:01 +00:00
|
|
|
python:
|
|
|
|
- 3.5
|
|
|
|
- 3.4
|
|
|
|
- 2.7
|
|
|
|
- nightly
|
|
|
|
- pypy
|
|
|
|
- pypy3
|
2014-01-07 12:04:52 -08:00
|
|
|
|
2015-10-30 23:07:01 +00: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:
|
2015-10-30 23:07:01 +00:00
|
|
|
- pip install . pytest requests
|
2014-01-07 14:00:46 -08:00
|
|
|
|
2015-10-30 23:07:01 +00:00
|
|
|
script: py.test warcprox
|
2013-12-04 17:34:23 -08:00
|
|
|
|