From 8a723194ccee43e3c50e5a026659390d3be5b196 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Wed, 8 May 2013 10:55:52 +0100 Subject: [PATCH] Suggest providing a "test" command, not the old self-test attribute --- release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.py b/release.py index 7e245c0..2e9d258 100644 --- a/release.py +++ b/release.py @@ -26,7 +26,7 @@ def run_unit_tests(local_feed): print "Running self-tests..." exitstatus = subprocess.call([test_command, '--', local_feed]) if exitstatus == 2: - print "SKIPPED unit tests for %s (no 'self-test' attribute set)" % local_feed + print "SKIPPED unit tests for %s (no 'test' command)" % local_feed return if exitstatus: raise SafeException("Self-test failed with exit status %d" % exitstatus) -- 2.11.4.GIT