forked from django-parler/django-parler-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (40 loc) · 874 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
sudo: false
language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
env:
- DJANGO="django>=1.11.0,<1.12.0"
- DJANGO="django>=2.0,<2.1"
- DJANGO="django>=2.1,<2.2"
matrix:
exclude:
- python: '2.7'
env: DJANGO="django>=2.0,<2.1"
- python: '2.7'
env: DJANGO="django>=2.1,<2.2"
- python: '3.4'
env: DJANGO="django>=2.1,<2.2"
before_install:
- pip install codecov
install:
- pip install $DJANGO -e .
script:
- coverage run --source=parler_rest runtests.py
after_success:
- codecov
branches:
only:
- master
notifications:
email:
recipients:
- travis@edoburu.nl
on_success: never
on_failure: always
slack:
secure: M/+por3krrxz88oO5eJtnuEosBH1aP/if9tJzEYmlTrUOUttDjywT2FRU7+7rwU8KXzFGh3R1Qk8dboGUKGMXu/YA6kgKnb0NKXuC5mCfNeQYGNgIKRhkZiBVsRwbE4b7pQE0B4uxgWtPM3urD/q8Y+rIKHf7Cj9GGcW1NrRGAc=
on_success: never
on_failure: always