Skip to content

Commit

Permalink
fix: add a tag, goleveldb, to test_cover.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jinsan-line committed Apr 29, 2021
1 parent aaeda67 commit c5ced35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/test_cover.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PKGS=$(go list ./... | grep -v '/simapp')
set -e
echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
go test -v -timeout 30m -race -coverprofile=profile.out -covermode=atomic -tags='ledger test_ledger_mock' "$pkg"
go test -v -timeout 30m -race -coverprofile=profile.out -covermode=atomic -tags='ledger test_ledger_mock goleveldb' "$pkg"
if [ -f profile.out ]; then
tail -n +2 profile.out >> coverage.txt;
rm profile.out
Expand Down

0 comments on commit c5ced35

Please sign in to comment.