我知道这违反了要求/假定正确包装Python生产代码的任何最佳做法:在某些情况下,能够在同一文件中定义生产和测试代码可能会有所帮助(例如,在简单脚本的情况下)。然后如何在文件中运行所有或特定测试pytest?编辑-针对我的特定用例的解决方案:文件结构<root>:pytest.iniscrip_with_tests.py的内容pytest.ini:[pytest]python_files = script_with_tests.py的内容script_with_tests.py:import pytest # this is not required, works without as welldef test_always_pass(): passif __name__ == "__main__": main()pytest调用<root>:pytest script_with_tests.py
添加回答
举报
0/150
提交
取消