summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Dent <cdent@anticdent.org>2018-10-23 18:57:54 +0100
committerChris Dent <cdent@anticdent.org>2018-10-23 19:03:42 +0100
commitdf4ac3b79019aded4c9dbe1cb6bfc8b631c07300 (patch)
treed21e87ce95a463334c88ffa58bbfb3de0812bac7
parentbd13d07eb59cb92f32a3ac150cf132e8b2965fb1 (diff)
downloadpaste-git-df4ac3b79019aded4c9dbe1cb6bfc8b631c07300.tar.gz
Add support for limited testing with travis-ci
This uses the matrix style for engaging with tox and tests py27, 35, 36, 37 and pypy.
-rw-r--r--.travis.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..7c74462
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+sudo: false
+language: python
+install:
+ - pip install tox
+script:
+ - tox
+matrix:
+ include:
+ - python: 2.7
+ env: TOXENV=py27
+ - python: 3.5
+ env: TOXENV=py35
+ - python: 3.6
+ env: TOXENV=py36
+ - python: 3.7
+ env: TOXENV=py37
+ - python: pypy
+ env: TOXENV=pypy