From becb63de9a0c0ccedd5c2e1073045b088cd76f98 Mon Sep 17 00:00:00 2001 From: Pedro Rodrigues Date: Tue, 26 Jul 2016 21:59:34 +0100 Subject: [PATCH] useful info --- .travis.yml | 2 ++ tox.ini | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 478e4f06..f0a6ca02 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,6 +67,8 @@ script: - | if [[ $TRAVIS_OS_NAME == 'linux' ]]; then if [[ $CODESTYLE ]]; then + # 241 - multiple spaces after ‘,’ + # 501 - line too long pycodestyle --ignore=E241,E501 else make diff --git a/tox.ini b/tox.ini index e45f7c23..57cc5d9d 100644 --- a/tox.ini +++ b/tox.ini @@ -26,3 +26,5 @@ deps = pycodestyle commands = pycodestyle \ --ignore=E241,E501 + # 241 - multiple spaces after ‘,’ + # 501 - line too long