forked from SpockBotMC/SpockBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (30 loc) · 671 Bytes
/
.travis.yml
File metadata and controls
38 lines (30 loc) · 671 Bytes
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
sudo: false
language: python
python:
- "2.7_with_system_site_packages"
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=flake8
install:
- "pip install tox"
script:
- "tox -e $TOX_ENV"
after_success:
- "if [ `echo $TOX_ENV | grep -v flake8` ]; then pip install coveralls; coveralls; fi"
# whitelist
branches:
only:
- master
notifications:
irc:
channels:
- "irc.freenode.org#spockbot"
template:
- "%{repository_name}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "Build details: %{build_url}"
on_success: change
on_failure: change
use_notice: false
skip_join: true