aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Bechtold <tbechtold@suse.com>2018-05-15 17:41:31 +0200
committerThomas Bechtold <tbechtold@suse.com>2018-05-15 17:49:19 +0200
commit5b71b61ddead9019ff33f0326bcf4c4512c3c785 (patch)
tree1ce665351bfbff12d7cac09209a394448efb4216
parent362b0e09c01bb7c45f74456d2591efc6f0d44a9f (diff)
downloadgit-deps-5b71b61ddead9019ff33f0326bcf4c4512c3c785.tar.gz
Add a .travis.yml file
Pull requests should be tested automatically so add a .travis.yml file to setup TravisCI testing.
-rw-r--r--.travis.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..2c94596
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+sudo: false
+language: python
+matrix:
+ include:
+ - python: 2.7
+ env: TOX_ENV=flake8
+ - python: 2.7
+ env: TOX_ENV=py27
+ - python: 3.4
+ env: TOX_ENV=py34
+ - python: 3.6
+ env: TOX_ENV=py36
+install:
+- pip install tox
+script:
+- tox -e $TOX_ENV