Skip to content

Commit 7b24278

Browse files
committed
check-build-and-verify.sh: configure max length of line for RF test suites.
No functional changes.
1 parent c8241da commit 7b24278

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/scripts/ci/check-build-and-verify.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
3131
mvn --batch-mode license:check >license.log 2>&1 || LICENSE_FAIL=yes
3232
mvn --batch-mode sortpom:verify -Dsort.verifyFail=stop >pom.log || POM_FAIL=yes
3333
find src -type f -name '*.html' | xargs bootlint >bootlint.log 2>&1 || BOOTLINT_FAIL=yes
34-
rflint --ignore TooFewKeywordSteps src/test/robotframework >rflint.log 2>&1 || RFLINT_FAIL=yes
34+
rflint --ignore TooFewKeywordSteps \
35+
--configure LineTooLong:110 \
36+
src/test/robotframework \
37+
>rflint.log 2>&1 || RFLINT_FAIL=yes
3538
mvn --batch-mode jasmine:test >jasmine.log 2>&1 || JASMINE_FAIL=yes
3639
# FIXME: add check for src/main/config/nginx/503.*html
3740
# TODO: remove ignoring of error about alt attribute after resolving #314

0 commit comments

Comments
 (0)