summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorPrashanth Chandra <coolshanth94@gmail.com>2016-10-11 10:28:25 +0800
committerPrashanth Chandra <coolshanth94@gmail.com>2016-10-12 18:59:18 +0800
commit210d464442eb16c4450816307b5f52c7c6994913 (patch)
tree24d3cef71b98db8983fe77487474ad41e3ff6a27 /.travis.yml
parentd8d08de26cb17c9319a08c0c5f611c6778260030 (diff)
downloadale-210d464442eb16c4450816307b5f52c7c6994913.zip
Use vim-testbed to run Vader tests on Travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
1 files changed, 10 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 03ad0177..11adf95d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,14 @@
---
+sudo: required
+services:
+ - docker
language: python
python: 2.7
cache: pip
-install:
- - "pip install vim-vint==0.3.9"
-script:
- - "vint -s ."
+install: |
+ pip install vim-vint==0.3.9
+script: |
+ EXIT=0
+ vint -s || EXIT=$?
+ make test || EXIT=$?
+ exit $EXIT