-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
54 lines (54 loc) · 1.24 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
52
53
54
dist: xenial
language: python
sudo: false
cache: pip
python:
- '3.6'
- '3.5'
- '2.7'
env:
- PACKAGES="django>=1.11,<1.12"
- PACKAGES="django>=2.0,<2.1"
- PACKAGES="django>=2.1,<2.2"
- PACKAGES="django>=2.2,<2.3"
- PACKAGES="django>=3.0,<3.1"
matrix:
exclude:
- python: '2.7'
env: PACKAGES="django>=2.0,<2.1"
- python: '2.7'
env: PACKAGES="django>=2.1,<2.2"
- python: '2.7'
env: PACKAGES="django>=2.2,<2.3"
- python: '2.7'
env: PACKAGES="django>=3.0,<3.1"
- python: '3.5'
env: PACKAGES="django>=3.0,<3.1"
before_install:
- pip install codecov
install:
- pip install -U pip wheel
- pip install -q $PACKAGES -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: NhdY1hGdd8Z1shDm/g8M5sxbR2J8yVa0X/vmn3y05dZzW3FV4ktgIey6vZOA77Z3TtMbd3XXzWZaniVsp29HaBRxr0EVyk4zyR8i12cAnjIMox2/cWxjM92NkKufRMyW8wxPJsxNEMegOuanxZu72xHGxUYqySqQRCpTnWDk6RI=
on_success: never
on_failure: always