Skip to content

Commit b7b99cd

Browse files
committed
build(jenkins): use flake518 and not pycodestyle
1 parent 89e90ae commit b7b99cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ pipeline {
4747
echo "\${PIPESTATUS[0]}" | tee pylint_status.log
4848
python -m mypy ${PYTHON_MODULES} |& tee mypy.log
4949
echo "\${PIPESTATUS[0]}" | tee mypy_status.log
50-
python -m pycodestyle ${PYTHON_MODULES} |& tee pycodestyle.log
51-
echo "\${PIPESTATUS[0]}" | tee pycodestyle_status.log
50+
python -m flake518 ${PYTHON_MODULES} |& tee flake518.log
51+
echo "\${PIPESTATUS[0]}" | tee flake518_status.log
5252
python -m pydocstyle ${PYTHON_MODULES} |& tee pydocstyle.log
5353
echo "\${PIPESTATUS[0]}" | tee pydocstyle_status.log
5454
"""

0 commit comments

Comments
 (0)