mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Fix deprecation warning
This commit is contained in:
11
conftest.py
11
conftest.py
@ -106,13 +106,10 @@ def pytest_collection_modifyitems(session, config, items):
|
|||||||
assert isinstance(item, _pytest.python.Function)
|
assert isinstance(item, _pytest.python.Function)
|
||||||
|
|
||||||
# unittest-style test functions have the node of UnitTest class as parent
|
# unittest-style test functions have the node of UnitTest class as parent
|
||||||
assert isinstance(
|
if tuple(map(int, _pytest.__version__.split("."))) >= (7,):
|
||||||
item.parent,
|
assert isinstance(item.parent, _pytest.python.Class)
|
||||||
(
|
else:
|
||||||
_pytest.python.Class, # pytest >= 7.0.0
|
assert isinstance(item.parent, _pytest.python.Instance)
|
||||||
_pytest.python.Instance, # pytest < 7.0.0
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
# and that node references the UnitTest class
|
# and that node references the UnitTest class
|
||||||
assert issubclass(item.parent.cls, _IrcTestCase)
|
assert issubclass(item.parent.cls, _IrcTestCase)
|
||||||
|
Reference in New Issue
Block a user