Commit 3be0c6c1 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove test for use_setuptools, as it fails when running under pytest because...

Remove test for use_setuptools, as it fails when running under pytest because the installed version of setuptools is already present.
parent 342c2106
......@@ -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()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment