/usr/lib/imh-ultrastack-common/venv/lib/python3.13/site-packages/setuptools/tests
NameSizeModeActions
compat/-0755rm
config/-0755rm
indexes/-0755rm
integration/-0755rm
__pycache__/-0755rm
contexts.py31660644editdlrm
environment.py31020644editdlrm
fixtures.py122240644editdlrm
mod_with_constant.py220644editdlrm
namespaces.py27740644editdlrm
script-with-bom.py180644editdlrm
test_archive_util.py8450644editdlrm
test_bdist_deprecations.py7750644editdlrm
test_bdist_egg.py19570644editdlrm
test_bdist_wheel.py230910644editdlrm
test_build.py7980644editdlrm
test_build_clib.py31230644editdlrm
test_build_ext.py100990644editdlrm
test_build_meta.py333200644editdlrm
test_build_py.py142010644editdlrm
test_config_discovery.py225800644editdlrm
test_core_metadata.py180380644editdlrm
test_depends.py4240644editdlrm
test_develop.py31360644editdlrm
test_dist.py89510644editdlrm
test_distutils_adoption.py59870644editdlrm
test_dist_info.py50050644editdlrm
test_editable_install.py424980644editdlrm
test_egg_info.py449410644editdlrm
test_extern.py2960644editdlrm
test_find_packages.py78190644editdlrm
test_find_py_modules.py24040644editdlrm
test_glob.py8870644editdlrm
test_install_scripts.py34330644editdlrm
test_logging.py20960644editdlrm
test_manifest.py185620644editdlrm
test_namespaces.py25080644editdlrm
test_scripts.py3790644editdlrm
test_sdist.py328080644editdlrm
test_setopt.py13650644editdlrm
test_setuptools.py93230644editdlrm
test_shutil_wrapper.py6410644editdlrm
test_unicode_utils.py3160644editdlrm
test_virtualenv.py37300644editdlrm
test_warnings.py33470644editdlrm
test_wheel.py187220644editdlrm
test_windows_wrappers.py78680644editdlrm
text.py1230644editdlrm
textwrap.py980644editdlrm
__init__.py3350644editdlrm
Edit: /usr/lib/imh-ultrastack-common/venv/lib/python3.13/site-packages/setuptools/tests/test_develop.py (3136B)
"""develop tests""" import os import platform import subprocess import sys import pytest from setuptools._path import paths_on_pythonpath from . import contexts, namespaces SETUP_PY = """\ from setuptools import setup setup(name='foo', packages=['foo'], ) """ INIT_PY = """print "foo" """ @pytest.fixture def temp_user(monkeypatch): with contexts.tempdir() as user_base: with contexts.tempdir() as user_site: monkeypatch.setattr('site.USER_BASE', user_base) monkeypatch.setattr('site.USER_SITE', user_site) yield @pytest.fixture def test_env(tmpdir, temp_user): target = tmpdir foo = target.mkdir('foo') setup = target / 'setup.py' if setup.isfile(): raise ValueError(dir(target)) with setup.open('w') as f: f.write(SETUP_PY) init = foo / '__init__.py' with init.open('w') as f: f.write(INIT_PY) with target.as_cwd(): yield target class TestNamespaces: @staticmethod def install_develop(src_dir, target): develop_cmd = [ sys.executable, 'setup.py', 'develop', '--install-dir', str(target), ] with src_dir.as_cwd(): with paths_on_pythonpath([str(target)]): subprocess.check_call(develop_cmd) @pytest.mark.xfail(reason="pkg_resources has been removed") @pytest.mark.skipif( bool(os.environ.get("APPVEYOR")), reason="https://github.com/pypa/setuptools/issues/851", ) @pytest.mark.skipif( platform.python_implementation() == 'PyPy', reason="https://github.com/pypa/setuptools/issues/1202", ) @pytest.mark.uses_network def test_namespace_package_importable(self, tmpdir): """ Installing two packages sharing the same namespace, one installed naturally using pip or `--single-version-externally-managed` and the other installed using `develop` should leave the namespace in tact and both packages reachable by import. """ pkg_A = namespaces.build_namespace_package(tmpdir, 'myns.pkgA') pkg_B = namespaces.build_namespace_package(tmpdir, 'myns.pkgB') target = tmpdir / 'packages' # use pip to install to the target directory install_cmd = [ sys.executable, '-m', 'pip', 'install', str(pkg_A), '-t', str(target), ] subprocess.check_call(install_cmd) self.install_develop(pkg_B, target) namespaces.make_site_dir(target) try_import = [ sys.executable, '-c', 'import myns.pkgA; import myns.pkgB', ] with paths_on_pythonpath([str(target)]): subprocess.check_call(try_import) # additionally ensure that pkg_resources import works pkg_resources_imp = [ sys.executable, '-c', 'import pkg_resources', ] with paths_on_pythonpath([str(target)]): subprocess.check_call(pkg_resources_imp)