diff options
author | Stuart Langridge <sil@kryogenix.org> | 2019-06-04 15:35:59 +0100 |
---|---|---|
committer | Stuart Langridge <sil@kryogenix.org> | 2019-06-04 15:35:59 +0100 |
commit | b3a4c7a9a42e2ee6ed68548944aa2fe3ab1da274 (patch) | |
tree | c9d0bc444de1dd3c0b86ebc14874a95381ea1b7f | |
parent | Allow overriding refresh interval on command line (diff) | |
download | magnus-b3a4c7a9a42e2ee6ed68548944aa2fe3ab1da274.tar.gz magnus-b3a4c7a9a42e2ee6ed68548944aa2fe3ab1da274.tar.bz2 magnus-b3a4c7a9a42e2ee6ed68548944aa2fe3ab1da274.zip |
Add flake8 checking in Travis CI to ensure that code stays nicely formatted
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
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 |