A.SummaryB.EnvironmentC.Test casesD.Attachments
单项选择题在PyTest中,可以使用哪个装饰器来指定测试用例的优先级()
A.pytest.allure.priority()B.pytest.allure.severity()C.pytest.mark.priority()D.pytest.mark.severity()
单项选择题如何在PyTest中使用allure进行测试()
A.使用pytest-allure插件B.使用pytest-report插件C.使用pytest-html插件D.使用pytest-xdist插件
单项选择题allure是一种什么类型的测试报告工具()
A.命令行工具B.图形化工具C.数据分析工具D.代码审查工具
单项选择题Allure测试报告框架可以生成什么类型的测试报告()
A.HTML报告B.JSON报告C.XML报告D.以上都是
单项选择题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.pyB.pytest test_moduleC.pytest -m test_moduleD.pytest -k test_module
单项选择题下面哪个是PyTest中用于判断是否不抛出异常的断言()
A.assertRaisesB.assertDoesNotRaiseC.assertWarnsD.assertDoesNotWarn
单项选择题在PyTest中,使用assert关键字进行断言时,当表达式为False时,会抛出哪种异常()
A.AssertionErrorB.ValueErrorC.TypeErrorD.SyntaxError
单项选择题在PyTest中,以下哪种断言用于判断某个列表是否为空()
A.assert []B.assert not []C.assert {}D.assert not {}