-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (34 loc) · 841 Bytes
/
.travis.yml
File metadata and controls
38 lines (34 loc) · 841 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
language: python
install:
- pip install tox
env:
- TOXENV=pep8
- TOXENV=yamllint
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
script:
- tox
matrix:
include:
- python: "2.7"
install:
- pip install tox
- pip install coveralls
env: TOXENV=cover
after_success: coveralls
- language: node_js
node_js: "4.2.6"
services:
- docker
install:
- docker build -t ceagle .
- docker run -d -p 127.0.0.1:5000:5000 -e "CEAGLE_CONF=/app/tests/ci/fake-clients-config.yaml" ceagle
- git clone http://github.com/cybertk/abao
- cd abao
- git checkout 0.5.0
- npm install
- cp ../raml/abao_hooks.js hooks.js
env:
script:
- ./bin/abao ../raml/api.raml --server http://127.0.0.1:5000 --hookfiles hooks.js