iris/.travis.yml
kataras 6ab00aa02f Update to 7.0.3. Read HISTORY.md
Former-commit-id: fc5a3c7ab655116ddf0dcb9c1c1657080d096c69
2017-06-10 05:28:17 +03:00

21 lines
585 B
YAML

language: go
os:
- linux
- osx
go:
- go1.8
go_import_path: github.com/kataras/iris
install:
- go get ./...
# install test dependencies
# - go get golang.org/x/tools/cmd/cover
# - go get -v github.com/axw/gocov
# - go install github.com/axw/gocov/gocov
script:
# - gocov test | gocov report
# the result of gocov is invalid because it tests the vendor too,
# which its tests are removed to reduce the dl size.
# When I'll push my internal tests to github I'll do it
# to do the test coverage all folders except vendor.
# For now keep it commented.
- go test -v ./...