summaryrefslogtreecommitdiffstats
path: root/build/hv-collector-coverage/check-coverage.sh
AgeCommit message (Collapse)AuthorFilesLines
2019-07-25Fix build failure in coverage moduleIzabela Zawadzka1-1/+1
xpath command had to be replaced as the versions available for CentOs 7 dont support used options Signed-off-by: Izabela Zawadzka <izabela.zawadzka@nokia.com> Issue-ID: DCAEGEN2-1687 Change-Id: I0b9ee73982fa9a348a7822d040ca90435fbc264c
2019-03-11Assure coverage is checked for all modulesPiotr Jaszczyk1-14/+32
Change-Id: Ia9bb6cef9154d64cfa45455e38c9fe7603a64c74 Issue-ID: DCAEGEN2-1328 Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
2018-11-29Custom detekt rule for logger usage checkPiotr Jaszczyk1-0/+30
Check if logger invocations don't use unoptimal invocations, eg. concatenation `debug("a=" + a)` instead of lambda use `debug {"a=" + a}` Unfortunately to avoid defining dependencies in many places and having circural dependencies it was necessarry to reorganize the maven module structure. The goal was to have `sources` module with production code and `build` module with build-time tooling (detekt rules among them). Issue-ID: DCAEGEN2-1002 Change-Id: I36e677b98972aaae6905d722597cbce5e863d201 Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>