首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
Pytest权威教程21-API参考-06-变量及异常
】的更多相关文章
Pytest权威教程21-API参考-03-夹具(Fixtures)
目录 夹具(Fixtures) @ pytest.fixture config.cache的 capsys capsysbinary capfd capfdbinary doctest_namespace Request pytestconfig record_property record_testsuite_property caplog Monkeypatching testdir recwarn tmp_path tmp_path_factory tmpdir tmpdir_factor…
Pytest权威教程21-API参考-04-钩子(Hooks)
目录 钩子(Hooks) 引导时的Hook方法 初始化时的Hook方法 测试运行时的Hook方法 收集用例时的Hook方法 生成测试结果时的Hook方法 调试/交互Hook方法 返回: Pytest权威教程 钩子(Hooks) 参考: 编写插件. 引用可由conftest.py文件实现的所有Hook方法. 引导时的Hook方法 引导时的Hook方法要求尽早注册插件(内部和setuptools插件). pytest_load_initial_conftests(early_config,parse…
Pytest权威教程21-API参考-05-对象(Objects)
目录 对象(Objects) CallInfo Class Collector Config ExceptionInfo FixtureDef FSCollector Function Item MarkDecorator MarkGenerator Mark Metafunc Module Node Parser PluginManager PytestPluginManager Session TestReport _Result 返回: Pytest权威教程 对象(Objects) Obj…
Pytest权威教程21-API参考-01-函数(Functions)
目录 函数(Functions) pytest.approx pytest.fail pytest.skip pytest.importorskip pytest.xfail pytest.exit pytest.main pytest.param pytest.raises pytest.deprecated_call pytest.register_assert_rewrite pytest.warns pytest.freeze_includes 返回: Pytest权威教程 函数(Fun…
Pytest权威教程21-API参考-06-变量及异常
目录 特殊变量(Special Variables) collect_ignore collect_ignore_glob pytest_plugins pytest_mark PYTEST_DONT_REWRITE(模块文档字符串) 环境变量(Environment Variables) PYTEST_ADDOPTS PYTEST_DEBUG PYTEST_PLUGINS PYTEST_DISABLE_PLUGIN_AUTOLOAD PYTEST_CURRENT_TEST 异常(Excepti…
Pytest权威教程21-API参考-02-标记(Marks)
目录 标记(Marks) pytest.mark.filterwarnings pytest.mark.parametrize pytest.mark.skip pytest.mark.skipif pytest.mark.usefixtures pytest.mark.xfail 自定义标记 返回: Pytest权威教程 标记(Marks) 可以使用标记应用元数据来测试函数(但不是Fixture方法),然后可以通过Fixture方法或插件访问. pytest.mark.filterwarnin…
Pytest权威教程21-API参考-07-配置选项(Configuration Options)
目录 配置选项(Configuration Options) addopts cache_dir confcutdir console_output_style doctest_encoding doctest_optionflags empty_parameter_set_mark filterwarnings junit_family junit_suite_name log_cli_date_format log_cli_format log_cli_level log_date_form…
Pytest权威教程07-Monkeypatching,对模块和环境进行Mock
目录 Monkeypatching,对模块和环境进行Mock 简单示例如: 猴子补丁方法 Monkeypatching 返回对象: 构建mock类 全局补丁示例如:阻止"requests"库的远程操作 Monkeypatching 环境变量 Monkeypatching字典 参考API 返回: Pytest权威教程 返回: Pytest权威教程 Monkeypatching,对模块和环境进行Mock 有时,测试需要调用依赖于全局设置的函数,或调用无法轻松测试的代码(如网络访问). mo…
Pytest权威教程10-捕获警告信息
目录 捕获警告信息 @pytest.mark.filterwarnings 禁用警告摘要 完全禁用警告捕获 弃用警告和待命记录警告 确保代码触发弃用警告 用警告函数断言警告 录制警告 自定义失败消息 内部pytest警告 返回: Pytest权威教程 捕获警告信息 3.1版中的新函数. 从版本开始3.1,pytest现在会在测试执行期间自动捕获警告并在会话结束时显示它们: # content of test_show_warnings.py import warnings def api_v1(…
Pytest权威教程12-跳过(Skip)及预期失败(xFail): 处理不能成功的测试用例
目录 跳过(Skip)及预期失败(xFail): 处理不能成功的测试用例 Skip跳过用例 xFail:将测试函数标记为预期失败 Skip/xFail参数设置 返回: Pytest权威教程 跳过(Skip)及预期失败(xFail): 处理不能成功的测试用例 你可以标记无法在某些平台上运行的测试用例或你希望失败的测试用例,以便Pytest可以相应地处理它们并提供测试会话的摘要,同时保持测试套件为通过状态. 跳过(Skip)指,你希望如果某些条件得到满足你的测试用例才执行,否则Pytest应该完全跳…