mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
25 lines
330 B
YAML
25 lines
330 B
YAML
# http://docs.travis-ci.com/user/migrating-from-legacy/
|
|
sudo: false
|
|
|
|
language: python
|
|
|
|
python:
|
|
- 3.5
|
|
- 3.4
|
|
- 2.7
|
|
- nightly
|
|
- pypy
|
|
- pypy3
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python-gdbm
|
|
- python3-gdbm
|
|
|
|
before_script:
|
|
- pip install . pytest requests
|
|
|
|
script: py.test warcprox
|
|
|