From 0f89225197b0ff9faa11746a166962c3b960e61a Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Fri, 24 Mar 2017 08:34:41 +1100 Subject: [PATCH] Added travis.yml --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..2f8e9036d4 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python +python: + - 2.7 + - 3.3 + - 3.4 + - 3.5 + +before_install: + - pip install pep8 + +script: + # TODO - Only perform PEP8 checks on files that have been changed in this push / PR + - find . -name \*.py -exec pep8 --ignore=E402 {} + \ No newline at end of file