chromedp/.travis.yml

20 lines
411 B
YAML
Raw Normal View History

2017-02-09 15:01:40 +00:00
language: go
go:
- 1.8.x
- 1.9.x
2017-02-09 15:01:40 +00:00
- tip
addons:
apt:
chrome: stable
sources:
2017-05-24 03:03:55 +00:00
- ubuntu-toolchain-r-test
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:
- 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