f80ddf9358
* test captplanet in travis * add comparison between uploaded and downloaded file * test inline and remote files * move captplanet testing to bash script
21 lines
394 B
YAML
21 lines
394 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.10.x
|
|
|
|
services:
|
|
- redis
|
|
|
|
before_install:
|
|
- source scripts/travis-deps.sh
|
|
|
|
install:
|
|
- make build-dev-deps
|
|
|
|
script:
|
|
- make test
|
|
- go list -f '{{if len .TestGoFiles}}"go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -L 1 sh -c
|
|
- gover
|
|
- goveralls -coverprofile=gover.coverprofile -service=travis-ci
|
|
- make test-captplanet
|