我知道这违反了要求/假定正确包装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
相关分类