File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change
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 "
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ mod="$(go list -m)"
13
13
14
14
golangci-lint run
15
15
16
- gotestsum -- -race -tags=integration ./...
16
+ gotestsum -- -race -tags=integration " $@ " ./...
You can’t perform that action at this time.
0 commit comments