Files
Buffteks-Website/venv/lib/python3.12/site-packages/setuptools-stubs/command/test.pyi
2025-05-08 21:10:14 -05:00

18 lines
542 B
Python

from typing import ClassVar, NoReturn
from typing_extensions import deprecated
from .. import Command
@deprecated(
"""\
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.\
"""
)
class test(Command):
description: ClassVar[str]
user_options: ClassVar[list[tuple[str, str, str]]]
def initialize_options(self) -> None: ...
def finalize_options(self) -> None: ...
def run(self) -> NoReturn: ...