mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
10 lines
181 B
Bash
Executable File
10 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
./run-checks --unit
|
|
|
|
go tool cover -html=.coverage/coverage.out -o .coverage/coverage.html
|
|
|
|
echo "Coverage html reports are available in .coverage/coverage.html"
|