diff options
author | Thomas Bechtold <tbechtold@suse.com> | 2018-05-15 17:41:31 +0200 |
---|---|---|
committer | Thomas Bechtold <tbechtold@suse.com> | 2018-05-15 17:49:19 +0200 |
commit | 5b71b61ddead9019ff33f0326bcf4c4512c3c785 (patch) | |
tree | 1ce665351bfbff12d7cac09209a394448efb4216 /.travis.yml | |
parent | 362b0e09c01bb7c45f74456d2591efc6f0d44a9f (diff) | |
download | git-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.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 16 |
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 |