aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/test.py
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2017-05-16 11:13:30 +0300
committerGitHub <noreply@github.com>2017-05-16 11:13:30 +0300
commitd919999bf8c37b2efad7d6eb57ec2f5ff340799e (patch)
tree845c46e35fa6a6cabb0432f2264b27a4b761be99 /setuptools/command/test.py
parentaec3649c91a2a55e218edd038571931704a8e3a6 (diff)
downloadexternal_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/test.py')
-rw-r--r--setuptools/command/test.py2
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"),
]