summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
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