forked from rexray/dvdcli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·31 lines (24 loc) · 713 Bytes
/
test.sh
File metadata and controls
executable file
·31 lines (24 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
echo "mode: set" > acc.out
FAIL=0
for DIR in $(find . -type d \
-not -path '*/.*' \
-not -path './.git*' \
-not -path '*/_*' \
-not -path './vendor/*' \
-not -path './version_info/*' \
-not -path './imports/*' \
-not -path '.' ); do
if ls $DIR/*.go &> /dev/null; then
go test -coverprofile=profile.out $DIR || FAIL=1
if [ -f profile.out ]; then
cat profile.out | grep -v "mode: set" >> acc.out
rm -f profile.out
fi
fi
done
if [ -n "$COVERALLS" -a "$FAIL" -eq 0 ]; then
goveralls -v -coverprofile=acc.out $COVERALLS
fi
rm -f acc.out
exit $FAIL