Skip to content

Commit

Permalink
[ci] added build/include_subdir check to filter for cpplint (#2427)
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikerRUS committed Sep 21, 2019
1 parent 306c6db commit 4f89cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/test.sh
Expand Up @@ -55,7 +55,7 @@ if [[ $TASK == "lint" ]]; then
pip install --user cpplint
pycodestyle --ignore=E501,W503 --exclude=./compute,./.nuget . || exit -1
pydocstyle --convention=numpy --add-ignore=D105 --match-dir="^(?!^compute|test|example).*" --match="(?!^test_|setup).*\.py" . || exit -1
cpplint --filter=-build/header_guard,-whitespace/line_length --recursive ./src ./include || exit 0
cpplint --filter=-build/include_subdir,-build/header_guard,-whitespace/line_length --recursive ./src ./include || exit 0
exit 0
fi

Expand Down

0 comments on commit 4f89cc1

Please sign in to comment.