2015-03-17 06:38:56 +00:00
|
|
|
sudo: false
|
2012-07-18 07:17:08 +00:00
|
|
|
language: python
|
2013-12-07 12:40:38 +00:00
|
|
|
services:
|
|
|
|
- redis
|
2012-07-18 07:17:08 +00:00
|
|
|
python:
|
2013-01-23 21:59:04 +00:00
|
|
|
- "2.6"
|
2012-07-18 07:17:08 +00:00
|
|
|
- "2.7"
|
2013-08-05 10:47:15 +00:00
|
|
|
- "3.3"
|
2014-07-30 09:50:15 +00:00
|
|
|
- "3.4"
|
2013-01-23 21:59:04 +00:00
|
|
|
- "pypy"
|
2012-07-18 07:17:08 +00:00
|
|
|
install:
|
2013-01-24 09:17:46 +00:00
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install -r py26-requirements.txt; fi
|
2012-07-18 07:17:08 +00:00
|
|
|
- pip install -r requirements.txt
|
2014-07-24 21:27:32 +00:00
|
|
|
- pip install pytest-cov --use-mirrors
|
|
|
|
- pip install coveralls --use-mirrors
|
2013-01-24 09:17:46 +00:00
|
|
|
#- pip install pytest # installed by Travis by default already
|
2012-07-18 07:17:08 +00:00
|
|
|
script:
|
2014-07-24 21:27:32 +00:00
|
|
|
- py.test --cov rq
|
|
|
|
after_success:
|
|
|
|
- coveralls
|