Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-03-08 18:19:16 +0300
committerNick Thomas <nick@gitlab.com>2017-03-08 18:19:16 +0300
commit91734e88d1763f69e66cec5ea7e5c5cf8c099e7f (patch)
treeb66230f94661fe3d172f80f3825d15a371cd12d3 /Makefile
parentfa9890420cf5dbbca652fceb05708b67c393ebb5 (diff)
Run the tests with more verbose output and a shorter timeout
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2c1b8e1a..96adaa04 100644
--- a/Makefile
+++ b/Makefile
@@ -40,10 +40,10 @@ complexity:
test:
go get golang.org/x/tools/cmd/cover
- go test ./... -cover
+ go test ./... -cover -v -timeout 1m
acceptance: gitlab-pages
- go test ./... -run-acceptance-tests
+ go test ./... -run-acceptance-tests -v -timeout 1m
docker:
docker run --rm -it -v ${PWD}:/go/src/pages -w /go/src/pages golang:1.5 /bin/bash