Sign inSign up

eeacms/pylint

By eeacms

Updated about 5 years ago

Docker image for Pylint checker

Image
1

100K+

eeacms/pylint repository overview

Docker image for Pylint checker

Pylint is a source code bug and quality checker for the Python programming language. It follows the style recommended by PEP 8, the Python style guide.

Usage

$ docker run --rm -v /path/to/python/code:/code eeacms/pylint

or

$ docker run --rm eeacms/pylint https://github.com/eea/eggmonkeytest.git

Running in jenkins, including pull requests:

  • GIT_NAME, GIT_SRC - must be given

  • GIT_BRANCH - defaults to master

  • GIT_CHANGE_ID - can be empty or pull request id

    $ docker run -i --rm -e GIT_SRC="https://github.com/eea/$GIT_NAME.git" -e GIT_NAME="$GIT_NAME" -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" eeacms/pylint

Advanced usage

Change output format to json:

$ docker run --rm -e PARAMS="--output-format=json" eeacms/pylint https://github.com/eea/eggmonkeytest.git

By default this image runs with this pylint rcfile, but you can provide your own like:

$ docker run --rm -v /path/to/pylint/rcfile.cfg:/etc/pylint.cfg \
         eeacms/pylint https://github.com/eea/eggmonkeytest.git

See --help for more options:

$ docker run --rm eeacms/pylint --help

Tag summary

Content type

Image

Digest

Size

37.5 MB

Last updated

about 5 years ago

docker pull eeacms/pylint