diff options
| author | Konrad Delong <konryd@gmail.com> | 2010-08-15 11:41:30 +0200 |
|---|---|---|
| committer | Konrad Delong <konryd@gmail.com> | 2010-08-15 11:41:30 +0200 |
| commit | 298a546dec41433d8d6004ca29de4ceb3bbfac8a (patch) | |
| tree | 8944887c85fcbeb6bac763dcaeff0e1d763566fc /src/distutils2/command | |
| parent | 222f3545fb4bb63511a70d19a092b805b252ee80 (diff) | |
| download | disutils2-298a546dec41433d8d6004ca29de4ceb3bbfac8a.tar.gz | |
test options casing
Diffstat (limited to 'src/distutils2/command')
| -rw-r--r-- | src/distutils2/command/test.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/distutils2/command/test.py b/src/distutils2/command/test.py index 0f7ba1f..f93c228 100644 --- a/src/distutils2/command/test.py +++ b/src/distutils2/command/test.py @@ -18,11 +18,11 @@ class test(Command): user_options = [ ('suite=', 's', - "Test suite to run (e.g. 'some_module.test_suite')"), + "test suite to run (for example: 'some_module.test_suite')"), ('runner=', None, - "Test runner to be called."), + "test runner to be called."), ('tests-require=', None, - "List of packages required to run the test suite."), + "list of packages required to run the test suite."), ] def initialize_options(self): |
