This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
OpenI
/
aiforge
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
128
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Refactor coverage profile with multiple packages (
#6167
)
master
Bo-Yi Wu
Lauris BH
6 years ago
parent
035c82aec4
commit
05143768d0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Makefile
+ 1
- 1
Makefile
View File
@@ -176,7 +176,7 @@ coverage:
.PHONY: unit-test-coverage
unit-test-coverage:
for PKG in $(PACKAGES); do
$(GO) test -tags='sqlite sqlite_unlock_notify' -cover -coverprofile
$$GOPATH/src/$$PKG/coverage.out $$PKG || exit 1; done;
$(GO) test -tags='sqlite sqlite_unlock_notify' -cover -coverprofile
coverage.out $(PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1
.PHONY: vendor
vendor:
Write
Preview
Loading…
Cancel
Save