forked from django-fluent/django-fluent-contents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (51 loc) · 1.23 KB
/
.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
48
49
50
51
language: python
sudo: false
cache: pip
python:
- '3.4'
- '3.3'
- '2.7'
env:
- DJANGO="django>=1.7.0,<1.8.0"
- DJANGO="django>=1.8.0,<1.9.0"
- DJANGO="django>=1.9.0,<1.10.0"
- DJANGO="django>=1.10.0,<1.11.0"
- DJANGO="django>=1.11.0,<1.12.0"
matrix:
exclude:
- python: '3.3'
env: DJANGO="django>=1.4.0,<1.5.0"
- python: '3.3'
env: DJANGO="django>=1.9.0,<1.10.0"
- python: '3.3'
env: DJANGO="django>=1.10.0,<1.11.0"
- python: '3.3'
env: DJANGO="django>=1.11.0,<1.12.0"
before_install:
- pip install codecov
install:
- pip install -U pip wheel setuptools
- pip install -q $DJANGO -r test-requirements.txt -e .
script:
- coverage run --rcfile=.coveragerc runtests.py
after_success:
- codecov
branches:
only:
- master
notifications:
irc:
channels:
- irc.freenode.org#django-fluent
template:
- '%{repository}#%{build_number} (%{commit}) %{message} -- %{build_url}'
skip_join: true
email:
recipients:
on_success: never
on_failure: always
slack:
secure: CJ+oORfxdm/EQDbIbQ8VZmPLgA15wohO7tv5RpgZXnuTBIWrWE/DwGULqms8P6qiDgHyvR/S8g2wGdaS2HXdz/aDpPPfypyRJJu9y1mupuv1tG2NkN7+7qmjRhjTrn9vvo5I8GaEGKtGVh5jMeahsZkqrYykmLB9rsHoyhZwNmo=
on_success: never
on_failure: always