chromedp/.travis.yml

14 lines
335 B
YAML
Raw Normal View History

2017-02-09 15:01:40 +00:00
language: go
2017-02-22 02:13:31 +00:00
sudo: false
2017-02-09 15:01:40 +00:00
go:
- 1.7
2017-02-22 01:27:44 +00:00
- 1.8
2017-02-09 15:01:40 +00:00
- tip
2017-02-09 15:27:15 +00:00
before_install:
2017-02-09 15:01:40 +00:00
- go get github.com/mattn/goveralls
- ./contrib/grab-headless_shell.sh $HOME/hs
2017-02-09 15:27:15 +00:00
script:
2017-02-09 15:23:23 +00:00
- export PATH=$PATH:$HOME/hs
2017-02-22 02:01:10 +00:00
- GOMAXPROCS=1 CHROMEDP_NO_SANDBOX=true go test -race -coverprofile=coverage.out
2017-02-09 15:01:40 +00:00
- goveralls -service=travis-ci -coverprofile=coverage.out