summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-24 10:58:09 +0000
committerJason R. Coombs <jaraco@jaraco.com>2014-03-24 10:58:09 +0000
commit421d17c9e3b09082d611a84f161dedd0b1d67414 (patch)
tree0d2c68ea7cba51fadfcf57f59d80772928b1893e /tests
parentcc2933b0691776c72e5458d14cc0fad748fe8ac9 (diff)
downloadpython-setuptools-bitbucket-421d17c9e3b09082d611a84f161dedd0b1d67414.tar.gz
Remove test for use_setuptools, as it fails when running under pytest because the installed version of setuptools is already present.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_ez_setup.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_ez_setup.py b/tests/test_ez_setup.py
index e6283306..89629a8d 100644
--- a/tests/test_ez_setup.py
+++ b/tests/test_ez_setup.py
@@ -9,7 +9,7 @@ CURDIR = os.path.abspath(os.path.dirname(__file__))
TOPDIR = os.path.split(CURDIR)[0]
sys.path.insert(0, TOPDIR)
-from ez_setup import (use_setuptools, _python_cmd, _install)
+from ez_setup import _python_cmd, _install
import ez_setup
class TestSetup(unittest.TestCase):
@@ -40,8 +40,5 @@ class TestSetup(unittest.TestCase):
ez_setup._python_cmd = _faked
_install(self.zipball)
- def test_use_setuptools(self):
- self.assertEqual(use_setuptools(), None)
-
if __name__ == '__main__':
unittest.main()