Skip to content

Commit 1da70c2

Browse files
authored
feat(scripts): improve test, add stat (#57)
1 parent b989b86 commit 1da70c2

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

scripts/stat

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
shopt -s globstar
3+
sloc_gen_api=$(cat ./api/**/*.go | wc -l)
4+
sloc_gen_mock=$(cat ./**/mock.*.go | wc -l)
5+
sloc_gen_other=$(($(cat ./**/*.*.go | wc -l) - sloc_gen_mock))
6+
sloc_gen=$((sloc_gen_api + sloc_gen_mock + sloc_gen_other))
7+
sloc_test=$(cat ./**/*_test.go | wc -l)
8+
sloc=$(cat ./**/*.go | wc -l)
9+
sloc_code=$((sloc - sloc_test - sloc_gen))
10+
printf "SLOC: all=%d (code=%d test=%d generated all=%d (api=%d mock=%d other=%d))\n" \
11+
"$sloc" "$sloc_code" "$sloc_test" \
12+
"$sloc_gen" "$sloc_gen_api" "$sloc_gen_mock" "$sloc_gen_other"

scripts/test

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ mod="$(go list -m)"
1313

1414
golangci-lint run
1515

16-
gotestsum -- -race -tags=integration ./...
16+
gotestsum -- -race -tags=integration "$@" ./...

0 commit comments

Comments
 (0)