We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89e90ae commit b7b99cdCopy full SHA for b7b99cd
Jenkinsfile
@@ -47,8 +47,8 @@ pipeline {
47
echo "\${PIPESTATUS[0]}" | tee pylint_status.log
48
python -m mypy ${PYTHON_MODULES} |& tee mypy.log
49
echo "\${PIPESTATUS[0]}" | tee mypy_status.log
50
- python -m pycodestyle ${PYTHON_MODULES} |& tee pycodestyle.log
51
- echo "\${PIPESTATUS[0]}" | tee pycodestyle_status.log
+ python -m flake518 ${PYTHON_MODULES} |& tee flake518.log
+ echo "\${PIPESTATUS[0]}" | tee flake518_status.log
52
python -m pydocstyle ${PYTHON_MODULES} |& tee pydocstyle.log
53
echo "\${PIPESTATUS[0]}" | tee pydocstyle_status.log
54
"""
0 commit comments