Skip to content
Snippets Groups Projects
Commit 063e20bb authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Renamed pep8 to pycodestyle.

parent eae12073
No related branches found
No related tags found
No related merge requests found
...@@ -2,13 +2,13 @@ image: docker:stable ...@@ -2,13 +2,13 @@ image: docker:stable
before_script: before_script:
- apk add --no-cache py-pip - apk add --no-cache py-pip
- pip install pep8 - pip install pycodestyle
pep8: pycodestyle:
script: script:
# Run pep8 check. # Run pycodestyle (PEP8) check.
# https://pep8.readthedocs.io/en/latest/intro.html#error-codes # https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# Ignored errors: # Ignored errors:
# - E501: line too long # - E501: line too long
# - E731: do not assign a lambda expression, use a def # - E731: do not assign a lambda expression, use a def
- pep8 --ignore=E501,E731 . - pycodestyle --ignore=E501,E731 .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment