mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-04-28 14:29:19 +08:00
d03097108c
Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
14 lines
313 B
Awk
14 lines
313 B
Awk
#!/usr/bin/env awk
|
|
|
|
{
|
|
print $0
|
|
if (match($0, /^total:/)) {
|
|
sub(/%/, "", $NF);
|
|
printf("test coverage is %s%(quality gate is %s%)\n", $NF, target)
|
|
if (strtonum($NF) < target) {
|
|
printf("test coverage does not meet expectations: %d%, please add test cases!\n", target)
|
|
exit 1;
|
|
}
|
|
}
|
|
}
|