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:39:22 +0300
committerNick Thomas <nick@gitlab.com>2017-03-08 18:44:51 +0300
commit275cafa033f087748f66d12197d447e56537a048 (patch)
tree16e129ba1a96ca2e1dc15fc62a3a752c967975a1 /Makefile
parent114d0f4075bdba7600f59e38771a75b82c9ae7c0 (diff)
Rework the acceptance tests to use go test -short as a qualifier
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 96adaa04..1bee4e6a 100644
--- a/Makefile
+++ b/Makefile
@@ -40,10 +40,11 @@ complexity:
test:
go get golang.org/x/tools/cmd/cover
- go test ./... -cover -v -timeout 1m
+ go test ./... -short -cover -v -timeout 1m
acceptance: gitlab-pages
- go test ./... -run-acceptance-tests -v -timeout 1m
+ go get golang.org/x/tools/cmd/cover
+ go test ./... -cover -v -timeout 1m
docker:
docker run --rm -it -v ${PWD}:/go/src/pages -w /go/src/pages golang:1.5 /bin/bash