aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/test.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-10-10 20:41:25 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-10-10 20:41:25 -0400
commit34910765fbafb53bec6604b730875d010a863ae2 (patch)
treeccd5bb1bba2630292e6ab4682f39da9027f9b1de /setuptools/command/test.py
parent5a9aed6e210628d16cd446c163fa50c9841dba34 (diff)
downloadexternal_python_setuptools-34910765fbafb53bec6604b730875d010a863ae2.tar.gz
external_python_setuptools-34910765fbafb53bec6604b730875d010a863ae2.tar.bz2
external_python_setuptools-34910765fbafb53bec6604b730875d010a863ae2.zip
Always execute tests, even if no test_suite is supplied. Fixes #446.
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 13b8b46b..9c6a8e04 100644
--- a/setuptools/command/test.py
+++ b/setuptools/command/test.py
@@ -138,7 +138,7 @@ class test(Command):
if self.distribution.tests_require:
self.distribution.fetch_build_eggs(self.distribution.tests_require)
- if self.test_suite:
+ if True:
cmd = ' '.join(self._argv)
if self.dry_run:
self.announce('skipping "%s" (dry run)' % cmd)