mirror of https://github.com/apache/druid.git
Disable function code coverage check (#9933)
As observed in https://github.com/apache/druid/pull/9905 and https://github.com/apache/druid/pull/9915, the function code coverage check flags false positive issues, so it should be disabled for now.
This commit is contained in:
parent
6130a834c2
commit
b8c2266aa0
|
@ -166,7 +166,8 @@ jobs:
|
|||
project_files="$(echo "${all_files}" | grep "${regex}" || [[ $? == 1 ]])";
|
||||
fi
|
||||
- for f in ${project_files}; do echo $f; done # for debugging
|
||||
# Check diff code coverage for the maven projects being tested (retry install in case of network error)
|
||||
# Check diff code coverage for the maven projects being tested (retry install in case of network error).
|
||||
# Currently, the function coverage check is not reliable, so it is disabled.
|
||||
- >
|
||||
if [ -n "${project_files}" ]; then
|
||||
travis_retry npm install @connectis/diff-test-coverage@1.5.3
|
||||
|
@ -176,7 +177,7 @@ jobs:
|
|||
--type jacoco
|
||||
--line-coverage 65
|
||||
--branch-coverage 65
|
||||
--function-coverage 80
|
||||
--function-coverage 0
|
||||
--
|
||||
|| { printf "\nDiff code coverage check failed. To view coverage report, run 'mvn clean test jacoco:report' and open 'target/site/jacoco/index.html'\n" && false; }
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue