From 199dfaeb96f275d4949df8843401924c200480c9 Mon Sep 17 00:00:00 2001 From: Ian Eure Date: Fri, 3 Jul 2015 10:26:04 -0700 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20fail=20if=20no=20tests=20are=20?= =?UTF-8?q?run.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prevents failures with multimodule projects. --- test-case-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-case-mode.el b/test-case-mode.el index 1926e08..3d553d6 100644 --- a/test-case-mode.el +++ b/test-case-mode.el @@ -1190,7 +1190,7 @@ CLASS and NAMESPACE need to be `regexp-quote'd." repo)) (defun test-case-junit-command () - (format "%s %s test -Dtest=%s" + (format "%s %s test -Dtest=%s -DfailIfNoTests=false" test-case-junit-mvn-executable test-case-junit-mvn-arguments (test-case-junit-class)))