-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (43 loc) · 1 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
language: python
sudo: false
cache: pip
python:
- '3.6'
- '3.4'
- '2.7'
env:
- PACKAGES="django>=1.10,<1.11 django-polymorphic<2.0"
- PACKAGES="django>=1.11,<1.12"
- PACKAGES="django>=2.0,<2.1"
matrix:
exclude:
- python: '2.7'
env: PACKAGES="django>=2.0,<2.1"
before_install:
- pip install -U pip wheel setuptools
- pip install codecov
install:
- pip install $PACKAGES -e .
script:
- coverage run --source=fluentcms_emailtemplates 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