CircleCI: Adds pylint test for all python files in test/ directory.

This commit is contained in:
Christian Parpart 2020-01-15 14:19:13 +01:00 committed by chriseth
parent 8a7e1d651a
commit 6ab385d34a
2 changed files with 3 additions and 3 deletions

View File

@ -267,8 +267,8 @@ jobs:
command: apt -q update && apt install -y python3-pip command: apt -q update && apt install -y python3-pip
- run: - run:
name: Install pylint name: Install pylint
command: python3 -m pip install pylint z3-solver command: python3 -m pip install pylint z3-solver pygments-lexer-solidity
# also z3-solver to make sure pylint knows about this module # also z3-solver to make sure pylint knows about this module, pygments-lexer-solidity for docs
- run: - run:
name: Linting Python Scripts name: Linting Python Scripts
command: ./scripts/pylint_all.py command: ./scripts/pylint_all.py

View File

@ -71,4 +71,4 @@ good-names=
expected-line-ending-format=LF expected-line-ending-format=LF
# Maximum number of characters on a single line. # Maximum number of characters on a single line.
max-line-length=110 max-line-length=130