Fix todo in setuptools.command.test (#8416)

With https://github.com/python/mypy/pull/10884 merged and released, this should be safe to re-enable per the todo comment.

https://github.com/pypa/setuptools/blob/main/setuptools/command/test.py#L117
This commit is contained in:
Kevin Kirsche
2022-07-27 21:23:37 -04:00
committed by GitHub
parent 78e0b3cfca
commit 046c0104e4

View File

@@ -29,8 +29,8 @@ class test(Command):
test_runner: Any
def initialize_options(self) -> None: ...
def finalize_options(self) -> None: ...
# TODO: uncomment once https://github.com/python/mypy/pull/10884 is released
# def test_args(self): ...
@NonDataProperty
def test_args(self) -> list[str]: ...
def with_project_on_sys_path(self, func) -> None: ...
def project_on_sys_path(self, include_dists=...): ...
@staticmethod