forked from deliveryhero/lymph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (30 loc) · 804 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
language: python
python:
- 2.7
- 3.4
- 3.5
services:
- rabbitmq
before_install:
- sudo apt-get update
install:
- sudo apt-get install zookeeper
- export MAJOR_TRAVIS_PYTHON_VERSION=$(python -c "import sys;sys.stdout.write(str(sys.version_info.major))")
- pip install -r requirements/dev.txt
before_script:
- export ZOOKEEPER_PATH=/usr/share/java
script:
- mkdir -p tmp
- pushd tmp
- nosetests --with-lymph lymph
- popd
notifications:
email: false
irc:
channels:
- "chat.freenode.net#lymph"
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "Change view : %{compare_url}"
- "Build details : %{build_url}"
use_notice: true