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.
20 lines
399 B
YAML
20 lines
399 B
YAML
language: python
|
|
services:
|
|
- redis
|
|
matrix:
|
|
include:
|
|
- python: "3.4"
|
|
- python: "3.5"
|
|
- python: "3.6"
|
|
- python: "3.7"
|
|
- python: "3.8"
|
|
- python: "pypy3"
|
|
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
|