From 503abd5ce60f6e3b9283ed44fb645cb73ada831b Mon Sep 17 00:00:00 2001 From: cclauss Date: Wed, 12 Jun 2019 17:11:12 +0200 Subject: [PATCH] Travis CI: Lint for Python syntax errors and undefined names Automated testing would need to be turned on at https://travis-ci.org/idaholab/Malcolm --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..472c3b6d9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: python +install: pip install flake8 +script: flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics