Skip to content
Snippets Groups Projects
Commit 2981b39d authored by nugget's avatar nugget
Browse files

Do not allow failure of pep8 convention pipeline anymore. Set pylint to fail...

Do not allow failure of pep8 convention pipeline anymore. Set pylint to fail above the (arbitrary) value 8.5.
parent cda90bda
Branches
Tags
2 merge requests!12v.0.1 for alpha release,!8First OOP implementation of tagplot.py.
Pipeline #725138 passed with warnings
......@@ -41,14 +41,14 @@ before_script:
PEP8:
stage: linting
allow_failure: true
# allow_failure: true
script: flake8 --count . # PEP8 linting
Pylint:
stage: linting
allow_failure: true
script: find . -type f -name '*.py' | xargs pylint -rn # Find all python files and check the code with pylint.
script: find . -type f -name '*.py' | xargs pylint -rn --fail-under=8.5 # Find all python files and check the code with pylint.
test:
stage: testing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment