aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/test.py')
-rw-r--r--setuptools/command/test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/command/test.py b/setuptools/command/test.py
index 18e90ffc..1038da71 100644
--- a/setuptools/command/test.py
+++ b/setuptools/command/test.py
@@ -20,8 +20,7 @@ class ScanningLoader(TestLoader):
the return value to the tests.
"""
tests = []
- if module.__name__ != 'setuptools.tests.doctest': # ugh
- tests.append(TestLoader.loadTestsFromModule(self, module))
+ tests.append(TestLoader.loadTestsFromModule(self, module))
if hasattr(module, "additional_tests"):
tests.append(module.additional_tests())