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 c8241da commit 7b24278Copy full SHA for 7b24278
src/main/scripts/ci/check-build-and-verify.sh
@@ -31,7 +31,10 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
31
mvn --batch-mode license:check >license.log 2>&1 || LICENSE_FAIL=yes
32
mvn --batch-mode sortpom:verify -Dsort.verifyFail=stop >pom.log || POM_FAIL=yes
33
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
+ rflint --ignore TooFewKeywordSteps \
35
+ --configure LineTooLong:110 \
36
+ src/test/robotframework \
37
+ >rflint.log 2>&1 || RFLINT_FAIL=yes
38
mvn --batch-mode jasmine:test >jasmine.log 2>&1 || JASMINE_FAIL=yes
39
# FIXME: add check for src/main/config/nginx/503.*html
40
# TODO: remove ignoring of error about alt attribute after resolving #314
0 commit comments