Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
697529d0
Commit
697529d0
authored
May 02, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Worked on golang code coverage via coveralls
parent
b51a8f11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
.gitignore
+1
-0
test.sh
+36
-0
No files found.
.gitignore
View file @
697529d0
...
...
@@ -26,4 +26,5 @@ public/css/*.min.css
conf/custom.ini
fig.yml
profile.cov
test.sh
0 → 100755
View file @
697529d0
#!/bin/bash
# The script does automatic checking on a Go package and its sub-packages, including:
# 1. gofmt (http://golang.org/cmd/gofmt/)
# 2. goimports (https://github.com/bradfitz/goimports)
# 3. golint (https://github.com/golang/lint)
# 4. go vet (http://golang.org/cmd/vet)
# 5. race detector (http://blog.golang.org/race-detector)
# 6. test coverage (http://blog.golang.org/cover)
set
-e
# Automatic checks
# test -z "$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
# go vet ./pkg/...
# godep go test -v -race ./pkg/...
echo
"mode: count"
>
profile.cov
# Standard go tooling behavior is to ignore dirs with leading underscors
for
dir
in
$(
find ./pkg/
-maxdepth
4
-type
d
)
;
do
if
ls
$dir
/
*
.go &> /dev/null
;
then
godep go
test
-covermode
=
count
-coverprofile
=
$dir
/profile.tmp
$dir
if
[
-f
$dir
/profile.tmp
]
then
cat
$dir
/profile.tmp | tail
-n
+2
>>
profile.cov
rm
$dir
/profile.tmp
fi
fi
done
go tool cover
-func
profile.cov
# To submit the test coverage result to coveralls.io,
# use goveralls (https://github.com/mattn/goveralls)
# goveralls -coverprofile=profile.cov -service=travis-ci
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment