0

我正在从 PyCharm 启动我的测试,一旦完成,我想创建一个报告。我怎样才能在我的代码中做到这一点?

我看到了 pytest_html 模块,但我只看到了一个命令(pytest --html=report.html --self-contained-html)放在cmd.exe上,我想知道如何直接在我的程序中执行此操作?

4

1 回答 1

0

一种选择是:

import subprocess
subprocess.run("pytest --html=report.html --self-contained-html",shell=True)
于 2019-11-04T18:13:29.997 回答