Merge pull request #714 from samuelcolvin/py35

add python 3.5
This commit is contained in:
Vincent Driessen 2016-06-07 07:07:47 +02:00
commit bc4fc5595f
1 changed files with 3 additions and 2 deletions

View File

@ -7,12 +7,13 @@ python:
- "2.7" - "2.7"
- "3.3" - "3.3"
- "3.4" - "3.4"
- "3.5"
- "pypy" - "pypy"
install: install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install -r py26-requirements.txt; fi - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install -r py26-requirements.txt; fi
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install pytest-cov --use-mirrors - pip install pytest-cov
- pip install coveralls --use-mirrors - pip install coveralls
#- pip install pytest # installed by Travis by default already #- pip install pytest # installed by Travis by default already
script: script:
- RUN_SLOW_TESTS_TOO=1 py.test --cov rq - RUN_SLOW_TESTS_TOO=1 py.test --cov rq