From 7aad916f7125517ca40f4e4f8a5c46bc61ad6c24 Mon Sep 17 00:00:00 2001 From: gfyoung Date: Mon, 15 May 2017 19:17:07 -0400 Subject: [PATCH] Add Travis for style checking Closes gh-298. --- .travis.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .travis.yml 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