diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-10-10 20:41:25 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-10-10 20:41:25 -0400 |
commit | b852bc9ba28d0586d8e6f41a347d6a6415c29cf8 (patch) | |
tree | 7bdfe4a5cc6bbb5359a2b415341057b57996b783 | |
parent | 435c469d7a1882a28f99851c7f94f5219c9d2900 (diff) | |
download | python-setuptools-bitbucket-b852bc9ba28d0586d8e6f41a347d6a6415c29cf8.tar.gz |
Always execute tests, even if no test_suite is supplied. Fixes #446.
-rw-r--r-- | setuptools/command/test.py | 2 |
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) |