From 7c424359ef1f83dac5a860dcf116db8c6748b210 Mon Sep 17 00:00:00 2001 From: Jeff Irion Date: Sun, 8 Sep 2019 08:34:44 -0700 Subject: [PATCH 1/2] Add linting to CI --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2de6a3f..316c267 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ env: - TOXENV=py36 - TOXENV=py27 -script: tox +script: flake8 adb/ && pylint adb/ && tox after_success: - coveralls From 2872647e6998d01f376a1c97c332cabae35ee71c Mon Sep 17 00:00:00 2001 From: Jeff Irion Date: Sun, 8 Sep 2019 08:37:57 -0700 Subject: [PATCH 2/2] Install flake8 and pylint --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 316c267..82c14e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ cache: - $HOME/.cache/pip install: - - pip install tox coveralls + - pip install tox coveralls flake8 pylint env: - TOXENV=py36