summaryrefslogtreecommitdiff
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
commitb852bc9ba28d0586d8e6f41a347d6a6415c29cf8 (patch)
tree7bdfe4a5cc6bbb5359a2b415341057b57996b783
parent435c469d7a1882a28f99851c7f94f5219c9d2900 (diff)
downloadpython-setuptools-bitbucket-b852bc9ba28d0586d8e6f41a347d6a6415c29cf8.tar.gz
Always execute tests, even if no test_suite is supplied. Fixes #446.
-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)