diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-06-15 08:46:38 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-06-15 08:46:38 -0400 |
commit | 7f5307b04dfcd19cc3d894a921bfa85160369d6d (patch) | |
tree | 375049375a977f78b36b1a3e7d3da9fb3b3b44ac /setuptools/tests/test_integration.py | |
parent | be98378594c42de60ff36e2681ebcecd8dafcd4f (diff) | |
download | external_python_setuptools-7f5307b04dfcd19cc3d894a921bfa85160369d6d.tar.gz external_python_setuptools-7f5307b04dfcd19cc3d894a921bfa85160369d6d.tar.bz2 external_python_setuptools-7f5307b04dfcd19cc3d894a921bfa85160369d6d.zip |
Remove unused variable and import
Diffstat (limited to 'setuptools/tests/test_integration.py')
-rw-r--r-- | setuptools/tests/test_integration.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/setuptools/tests/test_integration.py b/setuptools/tests/test_integration.py index 372535ec..0565e926 100644 --- a/setuptools/tests/test_integration.py +++ b/setuptools/tests/test_integration.py @@ -9,7 +9,6 @@ import shutil import site import sys import tempfile -import unittest import pytest @@ -54,7 +53,6 @@ def install_context(request): os.environ['PYTHONPATH'] = os.path.pathsep.join(sys.path) # Set up the command for performing the installation. - values = {} dist = Distribution() cmd = easy_install(dist) cmd.install_dir = install_dir |