Installed hashicorp raft

This commit is contained in:
Kelvin Clement Mwinuka
2023-07-18 03:16:33 +08:00
parent ca7ada5731
commit e3780c791e
414 changed files with 191339 additions and 3 deletions

12
vendor/github.com/mattn/go-isatty/go.test.sh generated vendored Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -race -coverprofile=profile.out -covermode=atomic "$d"
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done