From d13fd2a27b067a97f8d206652debbe9ab743e739 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 23 Jun 2016 12:47:00 +0530 Subject: [PATCH] ... --- setup/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/test.py b/setup/test.py index c760de78dc..2b84f4364f 100644 --- a/setup/test.py +++ b/setup/test.py @@ -62,6 +62,8 @@ def find_tests(which_tests=None): class Test(Command): + description = 'Run the calibre test suite' + def add_options(self, parser): parser.add_option('--test-module', default=[], action='append', type='choice', choices=sorted(map(str, TEST_MODULES)), help='The test module to run (can be specified more than once for multiple modules). Choices: %s' % ', '.join(sorted(TEST_MODULES)))