forked from mireq/django-parler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
47 lines (42 loc) · 944 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
45
46
47
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO="django>=1.5.0,<1.6.0"
- DJANGO="django>=1.6.0,<1.7.0"
- DJANGO="django>=1.7.0,<1.8.0"
- DJANGO="django>=1.8.0,<1.9.0"
- DJANGO="django>=1.9.0,<1.10.0"
matrix:
exclude:
- python: "2.6"
env: DJANGO="django>=1.7.0,<1.8.0"
- python: "2.6"
env: DJANGO="django>=1.8.0,<1.9.0"
- python: "2.6"
env: DJANGO="django>=1.9.0,<1.10.0"
- python: "3.3"
env: DJANGO="django>=1.4.0,<1.5.0"
- python: "3.3"
env: DJANGO="django>=1.9.0,<1.10.0"
install:
- travis_retry pip install -q coveralls # installs coverage
- travis_retry pip install $DJANGO
- pip install -e .
script:
- coverage run --source=example/article,parler runtests.py
after_success:
- coveralls --verbose
branches:
only:
- master
notifications:
email:
recipients:
on_success: never
on_failure: always