rq/.travis.yml

22 lines
450 B
YAML
Raw Normal View History

sudo: false
2012-07-18 07:17:08 +00:00
language: python
services:
- redis
2012-07-18 07:17:08 +00:00
python:
- "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"
2016-06-04 11:53:57 +00:00
- "3.5"
- "pypy"
2012-07-18 07:17:08 +00:00
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install -r py26-requirements.txt; fi
- pip install -e .
2016-06-04 11:53:57 +00:00
- pip install pytest-cov
- pip install coveralls
#- pip install pytest # installed by Travis by default already
2012-07-18 07:17:08 +00:00
script:
- RUN_SLOW_TESTS_TOO=1 py.test --cov rq --durations=5
2014-07-24 21:27:32 +00:00
after_success:
- coveralls