forked from pashinin/django-celery-beat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (34 loc) · 764 Bytes
/
.travis.yml
File metadata and controls
34 lines (34 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: python
sudo: false
cache: false
python:
- '3.5'
os:
- linux
env:
global:
PYTHONUNBUFFERED=yes
matrix:
- TOXENV=2.7-django1.10
- TOXENV=2.7-django1.9
- TOXENV=2.7-django1.8
- TOXENV=pypy-django1.10
- TOXENV=pypy-django1.9
- TOXENV=pypy-django1.8
- TOXENV=3.4-django1.10
- TOXENV=3.4-django1.9
- TOXENV=3.4-django1.8
- TOXENV=3.5-django1.10
- TOXENV=3.5-django1.9
- TOXENV=3.5-django1.8
- TOXENV=flake8
- TOXENV=flakeplus
- TOXENV=apicheck
- TOXENV=pydocstyle
- TOXENV=cov
install: travis_retry pip install -U tox
services: rabbitmq
script: tox -v -- -v
after_success:
- .tox/$TRAVIS_PYTHON_VERSION/bin/coverage xml
- .tox/$TRAVIS_PYTHON_VERSION/bin/codecov -e TOXENV