在终端中,我设置 www 站点和路径来为我的测试创建报告。
我设置:
MY_URL=mysite:myport REPORTPA=./mypath/mysecondfolder/ pytest -s testFile.py --html=REPORTPA/report.html
我应该保存report.html,我尝试这样的解决方案:
$REPORTPA/report.html or
%REPORTPA/report.html
而且效果不好。我如何使用我的变量?
在终端中,我设置 www 站点和路径来为我的测试创建报告。
我设置:
MY_URL=mysite:myport REPORTPA=./mypath/mysecondfolder/ pytest -s testFile.py --html=REPORTPA/report.html
我应该保存report.html,我尝试这样的解决方案:
$REPORTPA/report.html or
%REPORTPA/report.html
而且效果不好。我如何使用我的变量?
使用os.environ
(docs),如下所示:
>>> import os
>>> reportpa = os.environ['REPORTPA']
>>> print(reportpa)
./mypath/mysecondfolder/