diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-24 10:58:09 +0000 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-24 10:58:09 +0000 |
commit | 3be0c6c18a61f35ae5804464cc0da867fd0065f5 (patch) | |
tree | 0232f378a9c9ab06ffacae871635a31329abcfe3 | |
parent | 342c210603c74e4de0fc56d210c962ef9acc2cca (diff) | |
download | external_python_setuptools-3be0c6c18a61f35ae5804464cc0da867fd0065f5.tar.gz external_python_setuptools-3be0c6c18a61f35ae5804464cc0da867fd0065f5.tar.bz2 external_python_setuptools-3be0c6c18a61f35ae5804464cc0da867fd0065f5.zip |
Remove test for use_setuptools, as it fails when running under pytest because the installed version of setuptools is already present.
-rw-r--r-- | tests/test_ez_setup.py | 5 |
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() |