-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
53 lines (42 loc) · 868 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
48
49
50
51
52
53
language: python
# only invoke travis-ci for certain branches
branches:
only:
- master
- dev
before_script:
- skip
script:
- Skip
after_success:
- skip
stages:
- Testing
- name: Upstream
if: branch = master
jobs:
include:
- name: Testing
stage: Testing
before_script:
- pip install coverage==4.5.4
- pip install python-coveralls
script:
- make coverage
after_success:
- coveralls
- name:
- Upstream
stage:
- Upstream
install:
- skip
script: echo "hello" # TODO: replace this by a script which pushes to upstream branch (e.g. dev -> master)
after_success:
- skip
notifications:
email:
recipients:
on_success: never # default: change
on_failure: always # default: always