diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-03-06 15:49:46 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-03-06 15:49:46 -0500 |
commit | 55f0838ddfdd301f6f69369f94a3b476b5591b71 (patch) | |
tree | da6e7816ae2efa888e13787924d9964f64a29db1 /setuptools/tests | |
parent | 1ea8018e5c3a8c7c8d980368efc5ac3b81df37e9 (diff) | |
download | external_python_setuptools-55f0838ddfdd301f6f69369f94a3b476b5591b71.tar.gz external_python_setuptools-55f0838ddfdd301f6f69369f94a3b476b5591b71.tar.bz2 external_python_setuptools-55f0838ddfdd301f6f69369f94a3b476b5591b71.zip |
Move related tests into proximity
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 36d66428..2f7b27c5 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -168,13 +168,6 @@ class TestUserInstallTest: cmd.ensure_finalized() assert not cmd.user, 'user should not be implied' - def test_multiproc_atexit(self): - pytest.importorskip('multiprocessing') - - log = logging.getLogger('test_easy_install') - logging.basicConfig(level=logging.INFO, stream=sys.stderr) - log.info('this should not break') - def test_user_install_not_implied_without_usersite_enabled(self): site.ENABLE_USER_SITE = False # usually enabled #XXX: replace with something meaningfull @@ -185,6 +178,13 @@ class TestUserInstallTest: cmd.initialize_options() assert not cmd.user, 'NOT user should be implied' + def test_multiproc_atexit(self): + pytest.importorskip('multiprocessing') + + log = logging.getLogger('test_easy_install') + logging.basicConfig(level=logging.INFO, stream=sys.stderr) + log.info('this should not break') + def test_local_index(self): # make sure the local index is used # when easy_install looks for installed |