summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 11adf95d9f60d1de4930e11afef3461002070663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
sudo: required
services:
    - docker
language: python
python: 2.7
cache: pip
install: |
    pip install vim-vint==0.3.9
script: |
    EXIT=0
    vint -s || EXIT=$?
    make test || EXIT=$?
    exit $EXIT