summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-04-05 08:15:58 -0400
committerGitHub <noreply@github.com>2017-04-05 08:15:58 -0400
commit481d0a8af7a9d9cfdfbcb76ea07c2dafb8b588fc (patch)
tree50e088ed0ecbed57862af532050916c99203ee5f /Makefile
parentaed407fc906aaf4f95ac8a3186a2b85b9eff1a3b (diff)
downloadchat-481d0a8af7a9d9cfdfbcb76ea07c2dafb8b588fc.tar.gz
chat-481d0a8af7a9d9cfdfbcb76ea07c2dafb8b588fc.tar.bz2
chat-481d0a8af7a9d9cfdfbcb76ea07c2dafb8b588fc.zip
Fixing only EE coverage (#5933)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index dc1290745..8b43d8513 100644
--- a/Makefile
+++ b/Makefile
@@ -190,7 +190,6 @@ check-server-style: govet
check-style: check-client-style check-server-style
-
test-te-race: start-docker prepare-enterprise
@echo Testing TE race conditions
@@ -223,10 +222,12 @@ endif
test-server-race: test-te-race test-ee-race
-test-te: start-docker prepare-enterprise
+do-cover-file:
+ @echo "mode: count" > cover.out
+
+test-te: start-docker prepare-enterprise do-cover-file
@echo Testing TE
- @echo "mode: count" > cover.out
@echo "Packages to test: "$(TE_PACKAGES)
@@ -255,7 +256,7 @@ test-postgres: start-docker prepare-enterprise
@sed -i'' -e 's|"DriverName": "postgres"|"DriverName": "mysql"|g' config/config.json
@rm config/config.json-e
-test-ee: start-docker prepare-enterprise
+test-ee: start-docker prepare-enterprise do-cover-file
@echo Testing EE
ifeq ($(BUILD_ENTERPRISE_READY),true)