标签: python pycharm pytest
在PyCharm中执行测试脚本时,我试图在其中设置附加参数,如下所示。
PyCharm
--html=report.html
我需要为此设置特定于我运行的文件,
--html=<file_name>_report.html
我尝试使用变量名
--html=file+'.html'
如果文件名是hello_world.py 我期待着hello_world_report.html
hello_world.py
hello_world_report.html