Commit 877d9b28 authored by Adam Reese's avatar Adam Reese Committed by GitHub

Merge pull request #976 from adamreese/feat/parallel-coverage

feat(ci): run test coverage in parallel
parents 1c598c2d 870918d1
......@@ -25,10 +25,22 @@ hash godir 2>/dev/null || go get github.com/Masterminds/godir
generate_cover_data() {
for d in $(godir) ; do
(
local output="${coverdir}/${d//\//-}.cover"
go test -coverprofile="${output}" -covermode="$covermode" "$d"
) &
done
local fails
fails=0
for job in $(jobs -p); do
wait "${job}" || let "fails+=1"
done
if (( fails != 0 )); then
echo "FAILED"
exit ${fails}
fi
echo "mode: $covermode" >"$profile"
grep -h -v "^mode:" "$coverdir"/*.cover >>"$profile"
}
......@@ -40,7 +52,7 @@ push_to_coveralls() {
generate_cover_data
go tool cover -func "${profile}"
case "$1" in
case "${1-}" in
--html)
go tool cover -html "${profile}"
;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment