From 8a4b33b0e303fa55241c3b0f732168a558b9651f Mon Sep 17 00:00:00 2001 From: Renato Alves Date: Wed, 6 Aug 2014 18:28:40 +0100 Subject: [PATCH] Unittest - Say where taskd couldn't be found --- test/basetest/testing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/basetest/testing.py b/test/basetest/testing.py index 5b2d14124..e7e7e98b2 100644 --- a/test/basetest/testing.py +++ b/test/basetest/testing.py @@ -22,7 +22,8 @@ class TestCase(BaseTestCase): @unittest.skipIf(TASKD_SKIP, "TASKD_SKIP set, skipping taskd tests.") -@unittest.skipIf(Taskd.not_available(), "Taskd binary not available") +@unittest.skipIf(Taskd.not_available(), "Taskd binary not available at '{0}'" + .format(Taskd.DEFAULT_TASKD)) class ServerTestCase(BaseTestCase): """Automatically skips tests if TASKD_SKIP is present in the environment """