Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
654f7f70
Commit
654f7f70
authored
Feb 20, 2015
by
Felix Lange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.travis.yml: speed up tests on Travis
This should decrease test runtime to about 30 seconds.
parent
66abe2e3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
.travis.yml
.travis.yml
+0
-3
gocoverage.sh
gocoverage.sh
+8
-3
No files found.
.travis.yml
View file @
654f7f70
...
...
@@ -11,10 +11,7 @@ install:
# - go get golang.org/x/tools/cmd/vet
-
if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
-
go get github.com/mattn/goveralls
-
go get gopkg.in/check.v1
-
go get github.com/tools/godep
before_script
:
-
godep restore
-
gofmt -l -w .
-
goimports -l -w .
-
golint .
...
...
gocoverage.sh
View file @
654f7f70
#!/bin/bash
# The script does automatic checking on a Go package and its sub-packages, including:
# 6. test coverage (http://blog.golang.org/cover)
set
-e
# Run test coverage on each subdirectories and merge the coverage profile.
# Add godep workspace to GOPATH. We do it manually instead of using
# 'godep go test' or 'godep restore' so godep doesn't need to be installed.
GOPATH
=
"
$PWD
/Godeps/_workspace:
$GOPATH
"
# Install packages before testing. Not doing this would cause
# 'go test' to recompile all package dependencies before testing each package.
go
install
./...
# Run test coverage on each subdirectories and merge the coverage profile.
echo
"mode: count"
>
profile.cov
# Standard go tooling behavior is to ignore dirs with leading underscors
...
...
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