mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
23 lines
382 B
YAML
23 lines
382 B
YAML
# vim: set sw=4 et:
|
|
#
|
|
# tox approach stolen from
|
|
# https://github.com/pypa/pip/blob/abdb597dbfb51b21cc76c1cff068b72c80f3a77d/.travis.yml
|
|
#
|
|
|
|
language: python
|
|
|
|
env:
|
|
- TOXENV=py27
|
|
- TOXENV=py32
|
|
- TOXENV=py33
|
|
|
|
before_install:
|
|
- sudo apt-get update
|
|
- sudo apt-get -y install python-gdbm python3-gdbm python3.3-gdbm
|
|
|
|
before_script:
|
|
- pip install tox
|
|
|
|
script: tox
|
|
|