File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 8
8
- 1.6.x
9
9
10
10
script :
11
- - go test -v -race -cover ./...
11
+ - |
12
+ set -e +x
13
+ rm -f coverage.txt
14
+ for d in $(go list ./...); do
15
+ ( set -x; go test -v -race -cover -coverprofile=profile.out -covermode=atomic "$d" )
16
+ if [ -f profile.out ]; then
17
+ cat profile.out >> coverage.txt
18
+ rm profile.out
19
+ fi
20
+ done
21
+
22
+ after_script :
23
+ - bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 1
1
# ` import "github.com/docker-library/go-dockerlibrary/manifest" `
2
2
3
- [ ![ Travis Build Status] ( https://travis-ci.org/docker-library/go-dockerlibrary.svg?branch=master )] ( https://travis-ci.org/docker-library/go-dockerlibrary ) [ ![ GoDoc] ( https://godoc.org/github.com/docker-library/go-dockerlibrary?status.svg )] ( https://godoc.org/github.com/docker-library/go-dockerlibrary )
3
+ [ ![ Travis Build Status] ( https://travis-ci.org/docker-library/go-dockerlibrary.svg?branch=master )] ( https://travis-ci.org/docker-library/go-dockerlibrary ) [ ![ GoDoc] ( https://godoc.org/github.com/docker-library/go-dockerlibrary?status.svg )] ( https://godoc.org/github.com/docker-library/go-dockerlibrary ) [ ![ codecov ] ( https://codecov.io/gh/docker-library/go-dockerlibrary/branch/master/graph/badge.svg )] ( https://codecov.io/gh/docker-library/go-dockerlibrary )
4
4
5
5
This package contains the core parsing elements of [ the ` bashbrew ` tool used by the Docker Official Images] ( https://github.com/docker-library/official-images/tree/master/bashbrew ) .
You can’t perform that action at this time.
0 commit comments