Avoid using ... in 'go test' in .travis.yml (#404)

This can avoid time out on TravisCI
This commit is contained in:
Hajime Hoshi 2017-08-07 11:36:57 +09:00
parent 3c7850e982
commit e50159af12

View File

@ -34,7 +34,9 @@ before_script:
script:
- go build -tags example -v github.com/hajimehoshi/ebiten/examples/...
- go test -v github.com/hajimehoshi/ebiten/...
- go test -v github.com/hajimehoshi/ebiten
- go test -v github.com/hajimehoshi/ebiten/internal/math
- go test -v github.com/hajimehoshi/ebiten/internal/restorable
- gopherjs build --tags example -v github.com/hajimehoshi/ebiten/examples/blocks
# Looks like testing GL on node is hard.