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"
|
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
|
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:
|
2013-01-23 21:59:04 +00:00
|
|
|
- py.test
|