/usr/lib/imh-ultrastack-common/venv/lib/python3.13/site-packages/setuptools/command
NameSizeModeActions
__pycache__/-0755rm
alias.py23660644editdlrm
bdist_egg.py168320644editdlrm
bdist_rpm.py14350644editdlrm
bdist_wheel.py222100644editdlrm
build.py60520644editdlrm
build_clib.py45280644editdlrm
build_ext.py182700644editdlrm
build_py.py158260644editdlrm
develop.py17510644editdlrm
dist_info.py34500644editdlrm
easy_install.py7800644editdlrm
editable_wheel.py348620644editdlrm
egg_info.py257540644editdlrm
install.py50660644editdlrm
install_egg_info.py20200644editdlrm
install_lib.py43190644editdlrm
install_scripts.py24450644editdlrm
rotate.py21340644editdlrm
saveopts.py6780644editdlrm
sdist.py74260644editdlrm
setopt.py50470644editdlrm
test.py14000644editdlrm
_requirestxt.py42280644editdlrm
__init__.py8030644editdlrm
Edit: /usr/lib/imh-ultrastack-common/venv/lib/python3.13/site-packages/setuptools/command/test.py (1400B)
from __future__ import annotations from typing import NoReturn from setuptools import Command from setuptools.warnings import SetuptoolsDeprecationWarning # Would restrict to Literal["test"], but mypy doesn't support it: https://github.com/python/mypy/issues/8203 def __getattr__(name: str) -> type[_test]: if name == 'test': SetuptoolsDeprecationWarning.emit( "The test command is disabled and references to it are deprecated.", "Please remove any references to `setuptools.command.test` in all " "supported versions of the affected package.", due_date=(2024, 11, 15), stacklevel=2, ) return _test raise AttributeError(name) class _test(Command): """ Stub to warn when test command is referenced or used. """ description = "stub for old test command (do not use)" user_options = [ ('test-module=', 'm', "Run 'test_suite' in specified module"), ( 'test-suite=', 's', "Run single test, case or suite (e.g. 'module.test_suite')", ), ('test-runner=', 'r', "Test runner to use"), ] def initialize_options(self) -> None: pass def finalize_options(self) -> None: pass def run(self) -> NoReturn: raise RuntimeError("Support for the test command was removed in Setuptools 72")