diff options
author | Doug Hellmann <doug.hellmann@dreamhost.com> | 2014-06-02 08:20:27 -0700 |
---|---|---|
committer | Doug Hellmann <doug.hellmann@dreamhost.com> | 2014-06-02 08:20:27 -0700 |
commit | be98378594c42de60ff36e2681ebcecd8dafcd4f (patch) | |
tree | a17dcb3ae46bda9b862d63dd557900ed200a1486 /setuptools/tests/test_integration.py | |
parent | 6168f740b5306903d601d97e30adc28ab64bb612 (diff) | |
download | external_python_setuptools-be98378594c42de60ff36e2681ebcecd8dafcd4f.tar.gz external_python_setuptools-be98378594c42de60ff36e2681ebcecd8dafcd4f.tar.bz2 external_python_setuptools-be98378594c42de60ff36e2681ebcecd8dafcd4f.zip |
Activate more of the integration tests.
Change-Id: Ic3cc25a02de71b94a08f0bf64e8d8b01b572a23b
--HG--
extra : rebase_source : a49971d71570380f1ef51a88897d72328de337ed
Diffstat (limited to 'setuptools/tests/test_integration.py')
-rw-r--r-- | setuptools/tests/test_integration.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/setuptools/tests/test_integration.py b/setuptools/tests/test_integration.py index fdb8831e..372535ec 100644 --- a/setuptools/tests/test_integration.py +++ b/setuptools/tests/test_integration.py @@ -74,14 +74,14 @@ def test_stevedore(install_context): _install_one('stevedore', install_context, 'stevedore', 'extension.py') -# def test_virtualenvwrapper(install_context): -# _install_one('virtualenvwrapper', install_context, -# 'virtualenvwrapper', 'hook_loader.py') +def test_virtualenvwrapper(install_context): + _install_one('virtualenvwrapper', install_context, + 'virtualenvwrapper', 'hook_loader.py') -# def test_pbr(install_context): -# _install_one('pbr', install_context, -# 'pbr', 'core.py') +def test_pbr(install_context): + _install_one('pbr', install_context, + 'pbr', 'core.py') -# def test_python_novaclient(install_context): -# _install_one('python-novaclient', install_context, -# 'novaclient', 'base.py') +def test_python_novaclient(install_context): + _install_one('python-novaclient', install_context, + 'novaclient', 'base.py') |