本栗子测试数据根据pytest测试用例生成
首先设置pytest.ini配置信息
a
l
l
u
r
e
d
i
r
alluredir
alluredir代表生产allure报告数据地址
t
e
s
t
c
a
s
e
d
i
r
test_casedir
testc?asedir代表测试用例路径
[pytest]
addopts = -vs --alluredir $alluredir$
testpaths = $test_casedir$
python_files = test_*.py
python_classes = Test*
python_functions = test
执行用例:pytest.main()
执行用例江在
a
l
l
u
r
e
d
i
r
alluredir
alluredir生产测试数据
生产测试报告
a
l
l
u
r
e
d
i
r
alluredir
alluredir代表生产allure报告数据地址
r
e
p
o
r
t
d
i
r
reportdir
reportdir代表报告地址,前端项目pubic目录下新定义地址
import os
os.system("allure generate $alluredir$ -o $reportdir$ --clean")```
# vue-admin前端
主要代码
```html
<template>
<div class="iframe_box">
<iframe
ref="iframeDom"
:src="`/UVM/index.html`"
style="width: 100%; height: 100%; frameborder:1; position: absolute; top: 0; left: 0;margin-left:0;"
/>
</div>
</template>
访问