diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..1c549cec9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +--- +sudo: false + +cache: + - pip + +before_cache: + - rm ~/.cache/pip/log/debug.log + +language: python +python: + - "2.7" + - "3.5" + +install: + - pip install --upgrade pip + - pip install tox-travis coveralls + +script: + - tox + +after_success: + - coveralls |