相关考题
-
单项选择题
Pytest是一种什么类型的测试框架()
A.单元测试框架
B.集成测试框架
C.端到端测试框架
D.手动测试框架 -
单项选择题
如何在PyTest中跳过测试用例()
A.使用pytest.ignore(reason)装饰器
B.使用pytest.skip(reason)装饰器
C.使用pytest.fail(reason)装饰器
D.使用pytest.pass(reason)装饰器 -
单项选择题
PyTest中如何运行单个测试模块()
A.pytest test_module.py
B.pytest test_module
C.pytest -m test_module
D.pytest -k test_module
