mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-11-25 22:32:13 +02:00
support users with gotest for coloured test output
This commit is contained in:
12
test.sh
12
test.sh
@@ -3,9 +3,19 @@
|
|||||||
set -e
|
set -e
|
||||||
echo "" > coverage.txt
|
echo "" > coverage.txt
|
||||||
|
|
||||||
|
use_go_test=false
|
||||||
|
if command -v gotest; then
|
||||||
|
use_go_test=true
|
||||||
|
fi
|
||||||
|
|
||||||
for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
|
for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
|
||||||
if ls $d/*.go &> /dev/null; then
|
if ls $d/*.go &> /dev/null; then
|
||||||
go test -v -race -coverprofile=profile.out -covermode=atomic $d
|
args="-v -race -coverprofile=profile.out -covermode=atomic $d"
|
||||||
|
if [ "$use_go_test" == true ]; then
|
||||||
|
gotest $args
|
||||||
|
else
|
||||||
|
go test $args
|
||||||
|
fi
|
||||||
if [ -f profile.out ]; then
|
if [ -f profile.out ]; then
|
||||||
cat profile.out >> coverage.txt
|
cat profile.out >> coverage.txt
|
||||||
rm profile.out
|
rm profile.out
|
||||||
|
|||||||
Reference in New Issue
Block a user