From b3a4c7a9a42e2ee6ed68548944aa2fe3ab1da274 Mon Sep 17 00:00:00 2001 From: Stuart Langridge Date: Tue, 4 Jun 2019 15:35:59 +0100 Subject: Add flake8 checking in Travis CI to ensure that code stays nicely formatted --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c2697af --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: python +python: + - "3.6" +install: "pip install flake8" +script: + - flake8 magnus -- cgit