mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
464 B
YAML
24 lines
464 B
YAML
sudo: false
|
|
language: python
|
|
services:
|
|
- redis
|
|
matrix:
|
|
include:
|
|
- python: "2.7"
|
|
- python: "3.4"
|
|
- python: "3.5"
|
|
- python: "3.6"
|
|
- python: "3.7"
|
|
dist: xenial
|
|
- python: 3.8-dev
|
|
dist: xenial
|
|
- python: "pypy"
|
|
install:
|
|
- pip install -e .
|
|
- pip install pytest-cov sentry-sdk codecov
|
|
#- pip install pytest # installed by Travis by default already
|
|
script:
|
|
- RUN_SLOW_TESTS_TOO=1 py.test --cov rq --durations=5
|
|
after_success:
|
|
- codecov
|