summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..0bf07c5
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,17 @@
+language: python
+matrix:
+ include:
+ - env: TOXENV=py27
+ - env: TOXENV=py35
+ python: 3.5
+ - env: TOXENV=py36
+ python: 3.6
+ - env: TOXENV=pypy
+ python: pypy
+install: pip install coveralls tox
+script: tox
+after_success: coveralls
+cache:
+ directories:
+ - $HOME/.cache/pip
+ - $HOME/.cache/pre-commit