Files
assetx/webapp-back/scripts/coverage.sh
default 2ee4553b71 init: 初始化 AssetX 项目仓库
包含 webapp(Next.js 用户端)、webapp-back(Go 后端)、
antdesign(管理后台)、landingpage(营销落地页)、
数据库 SQL 和配置文件。
2026-03-27 11:26:43 +00:00

20 lines
435 B
Bash

#!/usr/bin/env bash
set -e
# http://stackoverflow.com/a/21142256/2055281
echo "mode: atomic" > coverage.out
for d in $(find ./* -maxdepth 10 -type d); do
if ls $d/*.go &> /dev/null; then
go test -coverprofile=profile.out -covermode=atomic $d
if [ -f profile.out ]; then
echo "$(pwd)"
cat profile.out | grep -v "mode: " >> coverage.out
rm profile.out
fi
fi
done