From: gfyoung Date: Mon, 15 May 2017 23:17:07 +0000 (-0400) Subject: Add Travis for style checking X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=7aad916f7125517ca40f4e4f8a5c46bc61ad6c24;p=stevenblack-hosts.git Add Travis for style checking Closes gh-298. --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..a28b64530 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +notifications: + email: false + +language: python + +sudo: false + +cache: + directories: + - $HOME/.cache/pip + +python: + - "2.7" + - "3.6" + +install: + pip install flake8 + +script: + flake8 \ No newline at end of file