blob: bd562b9a489a18dd0b53e2a31e577dd0132f580e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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
|