1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Mark TestPipResult as not having tests

This makes pytest stop warning about it.
This commit is contained in:
Pradyun Gedam 2022-01-21 14:10:40 +00:00
parent 914178b5b9
commit ff8b9a167e
No known key found for this signature in database
GPG key ID: FF99710C4332258E

View file

@ -250,6 +250,8 @@ class TestFailure(AssertionError):
class TestPipResult:
__test__ = False
def __init__(self, impl: ProcResult, verbose: bool = False) -> None:
self._impl = impl