Emacs: Add "-cover" to "go test"

master
Pierre Neidhardt 2016-11-06 11:16:43 +05:30
parent 1a4fb5870d
commit bf88b087a0
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ If `compile-command' is \"go build\":
(set (make-local-variable 'compile-command)
(if (string= compile-command "go build")
(concat "go run " (shell-quote-argument buffer-file-name))
(if (go-buffer-in-gopath-p) (if (string-match "_test.[gG][oO]$" buffer-file-name) "go test -v" "go install") "go build")))
(if (go-buffer-in-gopath-p) (if (string-match "_test.[gG][oO]$" buffer-file-name) "go test -cover -v" "go install") "go build")))
(message "Set `compile-command' to `%s'" compile-command))
(defun go-buffer-in-gopath-p ()