forked from mireq/django-parler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (44 loc) · 982 Bytes
/
.travis.yml
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
35
36
37
38
39
40
41
42
43
44
sudo: false
language: python
cache: pip
python:
- '2.7'
- '3.4'
- '3.6'
env:
- DJANGO="django>=1.11.0,<1.12.0"
- DJANGO="django>=2.0,<2.1"
matrix:
include:
- python: '3.6'
env: DJANGO="django>=2.1,<2.2"
exclude:
- python: '3.3'
env: DJANGO="django>=2.0,<2.1"
- python: '2.7'
env: DJANGO="django>=2.0,<2.1"
allow_failures:
- python: '3.6'
env: DJANGO="django>=2.1,<2.2"
before_install:
- pip install codecov
install:
- pip install -U pip wheel setuptools
- travis_retry pip install $DJANGO -e .
script:
- coverage run --rcfile=.coveragerc runtests.py
after_success:
- codecov
branches:
only:
- master
notifications:
email:
recipients:
on_success: never
on_failure: always
slack:
secure: WWNa4MHf50AOybB+XW9UKXCk/9Q8r++Jc4xTdEib43rj4odH9wxIaTRrzAbbpo3EO2gYuLgq6mMbaIZPD5l2UmgSnyuIbeYAAKIQblT+8XMamtXwnSS5j9vfBXYdj54rTlh+jKwEMW/JiQKl+SQpfQ2v1NMvYO63m89Ev9vXvcU=
on_success: never
on_failure: always