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:
authorAlessio Caiazza <376774-nolith@users.noreply.gitlab.com>2021-03-29 11:37:35 +0300
committerAlessio Caiazza <376774-nolith@users.noreply.gitlab.com>2021-03-29 11:37:35 +0300
commit08b7c91002fee0efb684028007eca2b456a884eb (patch)
tree635e6265197dee2286185117e3a798760340a195 /Makefile.util.mk
parent575fec0d865d576c295aa7263d190744bd0a0328 (diff)
parenta0c274cb5c114689264a14d5126c3f10c8c9a777 (diff)
Merge branch 'reduce-acceptance-test-execution' into 'master'
Add retriever config for acceptance tests See merge request gitlab-org/gitlab-pages!450
Diffstat (limited to 'Makefile.util.mk')
-rw-r--r--Makefile.util.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.util.mk b/Makefile.util.mk
index 5d5355e4..8d470564 100644
--- a/Makefile.util.mk
+++ b/Makefile.util.mk
@@ -14,7 +14,7 @@ test: .GOPATH/.ok gitlab-pages
go test $(if $V,-v) $(allpackages) 2>&1 | tee tests.out
race: .GOPATH/.ok gitlab-pages
- CGO_ENABLED=1 go test -race $(if $V,-v) $(allpackages)
+ CGO_ENABLED=1 go test -race $(if $V,-v) $(allpackages) 2>&1 | tee tests.out
acceptance: .GOPATH/.ok gitlab-pages
go test $(if $V,-v) ./test/acceptance ${ARGS} 2>&1 | tee tests.out