英文: pytest: manually add test to discovered tests 问题 @pytest.mark.mymark def custom_assert(): assert...
在Pytest中,有一种方法可以在收集测试时“模拟”或阻止某些操作吗?
英文: In Pytest, Is there a way to "mock" or prevent something from happening while collecti...
清理 pytest 中 POST 方法后的 API 数据。
英文: Cleanup API data in pytest after post method 问题 这是从API中删除数据的最佳方式吗? def test_can_get_all_items():...
如何在 GitHub Actions 的构建步骤后,在下一步中使用 Docker 构建。
英文: How to use docker build in next step of github actions after build step 问题 以下是我使用的GHA工作流程YAML文件示...
‘pytest’ 未被识别为内部或外部命令、可操作的程序或批处理文件。
英文: pytest' is not recognized as an internal or external command, operable program or batch file...
使用pytest中的parametrize来处理多个参数
英文: Using parametrize for multiple arguments in pytest 问题 有这样一个函数: def underscore_concat(*args): ret...
如何在pytest测试中使用runpy时防止缓存的模块/变量?
英文: How can I prevent cached modules/variables when using runpy in pytest tests? 问题 给定这些文件: # bar.py...
精细化的pytest日志配置
英文: Fine grained logging configuration for pytest 问题 当运行基于 Pytest 的测试时,我想要为我的自己的代码启用调试日志,但不想为第三方库启用调...
Pytest模拟在循环中对同一函数的不同行为
英文: Pytest mock different behaviour to same function on loop 问题 I'm having troubles on mocking the r...
如何在Python单元测试中模拟httpx的post()和get()调用?
英文: How to mock the post() and get() calls of httpx in python unitest? 问题 以下是您要翻译的部分: The following ...
10