我想避免在类和函数名称中使用“ test”前缀,而是实现我自己的测试参数化架构。 我做了下一个代码 test.py
import pytest
# class for inheritance to avoid "Test" prefix
class AtsClass:
__ATS_TEST_CLASS__ = True
# decorator to mark functions as tests (to avoid "Test" prefix)
def ats_test(f):
setattr(f, "__ATS_TEST_CLASS__", True)
return f
def test_1():
pass
@ats_test
def some_global_test():
pass
class MyClass(AtsClass):
def test_4(self):
pass
@ats_test
def some_func(self):
pass
conftest.py
import pytest
import inspect
# @pytest.hookimpl(hookwrapper=True)
def pytest_pycollect_makeitem(collector, name, obj):
# outcome = yield
# res = outcome.get_result()
if inspect.isclass(obj) and obj.__name__ != "AtsClass" and hasattr(obj, "__ATS_TEST_CLASS__") and obj.__ATS_TEST_CLASS__ == 1:
print("WE HAVE FOUND OUR CLASS")
return pytest.Class(name, parent=collector)
# outcome.force_result(pytest.Class(name, parent=collector))
if inspect.isfunction(obj) and hasattr(obj, "__ATS_TEST_CLASS__") and obj.__ATS_TEST_CLASS__ == 1:
print("WE HAVE FOUND OUR FUNCTION")
return pytest.Function(name, parent=collector)
# outcome.force_result([pytest.Function(name, parent=collector)])
def pytest_generate_tests(metafunc):
print("-->Generate: {}".format(metafunc.function.__name__))
在这种情况下,钩子“ pytest_pycollect_makeitem”为函数“ some_global_test”创建测试,但钩子“ pytest_generate_tests”未针对函数“ some_global_test”执行。
我找到了一种解决方案,从我的钩子中调用collector._genfunctions(name, obj)
。但是我认为这不是正确的决定,因为_genfunctions
是私有方法,没有声明。
还有另一种方法可以解决我的任务吗?
答案 0 :(得分:1)
如果您只想更改测试的前缀,则可以在python_functions
上设置自定义python_classes
和pytest.ini
选项。
有关更多信息,请遵循link。
答案 1 :(得分:0)
因此,没人知道答案,所以我决定提供我的解决方案(对其他人可能有用):
class TestBaseClass:
__test__ = True
def mark_test(f):
setattr(f, "__test__", True)
return f
# using base class and decorator
class MyTestClass(TestBaseClass):
@mark_test
def some_func(self):
pass
Pytest使用属性__test__
来检测鼻子测试,因此您可以使用鼻子库,也可以只使用此类基类和装饰器。