如何使用pytest运行与生产代码位于同一文件中的测试?

我知道这违反了要求/假定正确包装Python生产代码的任何最佳做法:在某些情况下,能够在同一文件中定义生产和测试代码可能会有所帮助(例如,在简单脚本的情况下)。然后如何在文件中运行所有或特定测试pytest?


编辑-针对我的特定用例的解决方案:


文件结构<root>:


pytest.ini

scrip_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 well


def test_always_pass():

    pass


if __name__ == "__main__":

    main()

pytest调用<root>:


pytest script_with_tests.py


慕慕森
浏览 159回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python