aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-05-17 10:45:15 -0400
committerGitHub <noreply@github.com>2017-05-17 10:45:15 -0400
commitb0d6d4b699a549a6d9822a0dfb0e2932334cf32d (patch)
tree845c46e35fa6a6cabb0432f2264b27a4b761be99
parentaec3649c91a2a55e218edd038571931704a8e3a6 (diff)
parentd919999bf8c37b2efad7d6eb57ec2f5ff340799e (diff)
downloadexternal_python_setuptools-b0d6d4b699a549a6d9822a0dfb0e2932334cf32d.tar.gz
external_python_setuptools-b0d6d4b699a549a6d9822a0dfb0e2932334cf32d.tar.bz2
external_python_setuptools-b0d6d4b699a549a6d9822a0dfb0e2932334cf32d.zip
Merge pull request #1033 from techtonik/patch-1
Document -s to run single test
-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"),
]