forked from hipache/hipache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
31 lines (26 loc) · 787 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
language: node_js
node_js:
# XXX right now, segfaulting on the 500MB upload
# - "0.11"
- "0.10"
env:
# Don't know yet how to install etcd on travis ubuntu, so disable the tests
- NO_ETCD=true
before_install:
- sudo apt-get update
- sudo apt-get install redis-server memcached
- npm install -g gulp
after_install:
# Pythonic tests require
- sudo apt-get install python-pip
- redis-server &
- ./bin/hipache -c config/config_test.json &
before_script:
# Hinting - XXX should fail!
- npm run-script hint
after_script:
# Running pythonic functional tests
- (cd test/functional && sudo pip install -r requirements.txt)
- (cd test/functional && python -m unittest discover)
# Coveralls report
- npm run coveralls