Skip to content

Commit

Permalink
Run pylint in 2 processes
Browse files Browse the repository at this point in the history
  • Loading branch information
index-git authored and jirik committed Aug 3, 2021
1 parent 7edfc99 commit e84220e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ test-bash:
docker-compose -f docker-compose.deps.yml -f docker-compose.test.yml run --rm layman_test bash

lint:
docker-compose -f docker-compose.deps.yml -f docker-compose.test.yml run --rm --no-deps layman_test bash -c "pylint -f colorized -r y --disable=duplicate-except --disable=duplicate-code --disable=no-name-in-module --disable=too-many-lines --disable=line-too-long --disable=redefined-outer-name --disable=c-extension-no-member --disable=import-outside-toplevel --disable=too-many-locals --disable=redefined-builtin --disable=too-many-arguments --disable=wrong-import-position --disable=too-many-statements --disable=too-many-branches --max-line-length=127 ./src ./test_tools ./tests && flake8 --count --select=E9,F63,F7,F82 --show-source --statistics ./src ./test_tools ./tests && pycodestyle --count --statistics --ignore=E402,E501,W503 ./src ./test_tools ./tests"
docker-compose -f docker-compose.deps.yml -f docker-compose.test.yml run --rm --no-deps layman_test bash -c "pylint -f colorized -j 2 -r y --disable=duplicate-except --disable=duplicate-code --disable=no-name-in-module --disable=too-many-lines --disable=line-too-long --disable=redefined-outer-name --disable=c-extension-no-member --disable=import-outside-toplevel --disable=too-many-locals --disable=redefined-builtin --disable=too-many-arguments --disable=wrong-import-position --disable=too-many-statements --disable=too-many-branches --max-line-length=127 ./src ./test_tools ./tests && flake8 --count --select=E9,F63,F7,F82 --show-source --statistics ./src ./test_tools ./tests && pycodestyle --count --statistics --ignore=E402,E501,W503 ./src ./test_tools ./tests"

lint-verbose:
docker-compose -f docker-compose.deps.yml -f docker-compose.test.yml run --rm --no-deps layman_test bash -c "pylint -f colorized -r y ./src ./test_tools ./tests"
Expand Down

0 comments on commit e84220e

Please sign in to comment.