2017-02-09 15:01:40 +00:00
|
|
|
language: go
|
|
|
|
go:
|
2017-11-25 19:57:29 +00:00
|
|
|
- 1.8.x
|
|
|
|
- 1.9.x
|
2017-02-09 15:01:40 +00:00
|
|
|
- tip
|
2017-05-24 03:02:32 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
2017-12-18 00:11:42 +00:00
|
|
|
chrome: stable
|
2017-05-24 03:02:32 +00:00
|
|
|
sources:
|
2017-05-24 03:03:55 +00:00
|
|
|
- ubuntu-toolchain-r-test
|
2017-05-24 03:02:32 +00:00
|
|
|
packages:
|
|
|
|
- libstdc++6
|
2017-02-09 15:27:15 +00:00
|
|
|
before_install:
|
2017-02-09 15:01:40 +00:00
|
|
|
- go get github.com/mattn/goveralls
|
2017-02-09 15:27:15 +00:00
|
|
|
script:
|
2017-12-18 00:11:42 +00:00
|
|
|
- export CHROMEDP_TEST_RUNNER=google-chrome-stable
|
|
|
|
- export CHROMEDP_DISABLE_GPU=true
|
|
|
|
- go test -v -coverprofile=coverage.out
|
2017-02-09 15:01:40 +00:00
|
|
|
- goveralls -service=travis-ci -coverprofile=coverage.out
|