Fixed some more issues with code coverage

This commit is contained in:
Marius Orcsik 2017-09-12 11:16:55 +02:00
parent 82e264ce02
commit 8034bdef7f
No known key found for this signature in database
GPG key ID: C36D1EBE93A6EEAE
2 changed files with 10 additions and 3 deletions

View file

@ -17,5 +17,5 @@ install:
script:
- go test -v ./activitypub
- go test -v -covermode=count -coverprofile=coverage.out $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN ./activitypub
- go test -v -covermode=count $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN ./activitypub

View file

@ -1,7 +1,14 @@
# Activity Pub
# Activity Pub for Go
[![MIT Licensed](https://img.shields.io/github/license/mariusor/activitypub.go.svg)](https://raw.githubusercontent.com/mariusor/activitypub.go/master/LICENSE)
[![Build status](https://img.shields.io/travis/mariusor/activitypub.go.svg)](https://travis-ci.org/mariusor/activitypub.go)
[![Test Coverage](https://img.shields.io/coveralls/mariusor/activitypub/master.svg)](https://coveralls.io/r/mariusor/activitypub.go?branch=master)
Basic lib for using [activity pub](https://www.w3.org/TR/activitypub/#Overview) API in Go.
## Usage
```go
import "github.com/mariusor/activitypub.go/activitypub"
```