gunicorn/.travis.yml
Berker Peksag 08ec1b2c70 Also, enable Python 3.4 on Travis CI.
(The "--use-mirrors" option was deprecated, so I removed it.)
2014-05-15 01:19:49 +03:00

15 lines
214 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- "pip install -r requirements_dev.txt"
- "python setup.py install"
script: py.test -x tests/
branches:
only:
- master