Skip to content

Commit

Permalink
rename to go-acc
Browse files Browse the repository at this point in the history
  • Loading branch information
arekkas committed Aug 13, 2017
1 parent 1fabae2 commit dbfe43e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go

go_import_path: github.com/ory/accurate-code-coverage
go_import_path: github.com/ory/go-acc

go:
- 1.8
Expand All @@ -9,10 +9,10 @@ env:
- GO15VENDOREXPERIMENT=1

install:
- go get ./go-acc/...
- go get ./...

script:
- go install ./go-acc
- go-acc github.com/ory/accurate-code-coverage/go-acc
- go-acc github.com/ory/accurate-code-coverage/go-acc/...
- go-acc $(go list github.com/ory/accurate-code-coverage/go-acc/...)
- go install .
- go-acc github.com/ory/go-acc
- go-acc github.com/ory/go-acc/...
- go-acc $(go list github.com/ory/go-acc/...)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# accurate-code-coverage
# go-acc

A tool for reporting accurate Code Coverage in Golang. It is an adaption of the following bash script:

Expand All @@ -11,7 +11,7 @@ go list ./... | grep -v /cmd | grep -v /vendor | xargs -n1 -I{} sh -c 'go test -
## Installation & Usage

```
$ go get github.com/ory/accurate-code-coverage/go-acc
$ go get github.com/ory/go-acc
$ go-acc
A tool for reporting accurate Code Coverage in Golang.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion go-acc/main.go → main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package accurate_code_coverage

import "github.com/ory/accurate-code-coverage/go-acc/cmd"

Expand Down

0 comments on commit dbfe43e

Please sign in to comment.