If you run Golang tests on Travis CI, it will download all of your dependencies with three dots:
go get -d -v ./... && go build -v ./...
What does ./...
indicate or expand to there? I've done some research but it doesn't seem to be a Unix convention.