diff options
author | anatoly techtonik <techtonik@gmail.com> | 2017-05-16 11:13:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-16 11:13:30 +0300 |
commit | d919999bf8c37b2efad7d6eb57ec2f5ff340799e (patch) | |
tree | 845c46e35fa6a6cabb0432f2264b27a4b761be99 /setuptools/command | |
parent | aec3649c91a2a55e218edd038571931704a8e3a6 (diff) | |
download | external_python_setuptools-d919999bf8c37b2efad7d6eb57ec2f5ff340799e.tar.gz external_python_setuptools-d919999bf8c37b2efad7d6eb57ec2f5ff340799e.tar.bz2 external_python_setuptools-d919999bf8c37b2efad7d6eb57ec2f5ff340799e.zip |
Document -s to run single test
Fixes https://github.com/pypa/setuptools/issues/1032
Diffstat (limited to 'setuptools/command')
-rw-r--r-- | setuptools/command/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/test.py b/setuptools/command/test.py index e7a386d1..29227d79 100644 --- a/setuptools/command/test.py +++ b/setuptools/command/test.py @@ -67,7 +67,7 @@ class test(Command): user_options = [ ('test-module=', 'm', "Run 'test_suite' in specified module"), ('test-suite=', 's', - "Test suite to run (e.g. 'some_module.test_suite')"), + "Run single test, case or suite (e.g. 'module.test_suite')"), ('test-runner=', 'r', "Test runner to use"), ] |