From 6ab385d34ab467e9d54ef68e634856c422ca366b Mon Sep 17 00:00:00 2001 From: Christian Parpart Date: Wed, 15 Jan 2020 14:19:13 +0100 Subject: [PATCH] CircleCI: Adds pylint test for all python files in test/ directory. --- .circleci/config.yml | 4 ++-- scripts/pylintrc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4a3698c62..a211edab0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -267,8 +267,8 @@ jobs: command: apt -q update && apt install -y python3-pip - run: name: Install pylint - command: python3 -m pip install pylint z3-solver - # also z3-solver to make sure pylint knows about this module + command: python3 -m pip install pylint z3-solver pygments-lexer-solidity + # also z3-solver to make sure pylint knows about this module, pygments-lexer-solidity for docs - run: name: Linting Python Scripts command: ./scripts/pylint_all.py diff --git a/scripts/pylintrc b/scripts/pylintrc index ca2141ef5..bf1f3c0c4 100644 --- a/scripts/pylintrc +++ b/scripts/pylintrc @@ -71,4 +71,4 @@ good-names= expected-line-ending-format=LF # Maximum number of characters on a single line. -max-line-length=110 +max-line-length=130