23-pytest-清空allure历史报告

简介: 23-pytest-清空allure历史报告

前言

  • 当测试用例修改名称或分开运行的两个测试用例生成的报告在同一个目录下,那么 allure 报告会保留历史记录,展示全部的报告结果,那么一起来看下如何解决吧。

修改用例名称

  • 修改前
1. # -*- coding: utf-8 -*-
2. # @Time    : 2021/12/18
3. # @Author  : 大海
4. 
5. import os
6. 
7. 
8. def test_one():
9. print('这是case1')
10. 
11. 
12. def test_two():
13. print('这是case2')
14. 
15. 
16. if __name__ == '__main__':
17.     os.system('pytest -s test_41.py --alluredir ./report/allure_raw')
  • 修改前报告

  • 修改后
1. # -*- coding: utf-8 -*-
2. # @Time    : 2021/12/18
3. # @Author  : 大海
4. 
5. import os
6. 
7. 
8. def test_ones():
9. print('这是case1')
10. 
11. 
12. def test_twos():
13. print('这是case2')
14. 
15. 
16. if __name__ == '__main__':
17.     os.system('pytest -s test_41.py --alluredir ./report/allure_raw')
  • 修改后报告

分开运行测试用例

  • case1
1. # -*- coding: utf-8 -*-
2. # @Time    : 2021/12/18
3. # @Author  : 大海
4. 
5. import os
6. 
7. 
8. def test_one():
9. print('这是case1')
10. 
11. 
12. def test_two():
13. print('这是case2')
14. 
15. 
16. if __name__ == '__main__':
17.     os.system('pytest -s test_41.py --alluredir ./report/allure_raw')
  • case2
1. # -*- coding: utf-8 -*-
2. # @Time    : 2021/12/18
3. # @Author  : 大海
4. 
5. import os
6. 
7. 
8. def test_three():
9. print('这是case3')
10. 
11. 
12. def test_four():
13. print('这是case4')
14. 
15. 
16. if __name__ == '__main__':
17.     os.system('pytest -s test_42.py --alluredir ./report/allure_raw')
  • 查看报告 :只想要第二次的报告,但是两次报告都展示出来了

清空历史报告

  • --clean-alluredir 参数可以清空 allure 报告生成的目录
  • 加上参数运行上面两个用例
1. # 运行第一个测试用例
2. pytest -s test_41.py --alluredir ./report/allure_raw
3. 
4. # 运行第二个测试用例,加上参数,清空第一次的测试报告记录
5. pytest -s test_42.py --alluredir ./report/allure_raw --clean-alluredir
  • 查看报告:只有第二次运行的测试用例报告

相关文章
|
6月前
|
API
如何把自定义的函数,记录到你的Airtest报告里
如何把自定义的函数,记录到你的Airtest报告里
120 0
|
Java 测试技术 Windows
自动化测试报告样式HTMLTestRunner、BeautifulReport、HTMLReport、Allure你喜欢哪个?
自动化测试报告样式HTMLTestRunner、BeautifulReport、HTMLReport、Allure你喜欢哪个?
150 1
|
测试技术
29-pytest-运行上次失败用例
29-pytest-运行上次失败用例
|
测试技术
22-pytest-allure.step()测试步骤描述
22-pytest-allure.step()测试步骤描述
|
移动开发 测试技术
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
119 0
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
|
测试技术
pytest学习和使用14-Pytest用例执行结果有哪几种状态?
pytest学习和使用14-Pytest用例执行结果有哪几种状态?
91 0
|
测试技术 Python
pytest学习和使用15-Pytest用例失败如何重跑?(pytest-rerunfailures的简单使用)
pytest学习和使用15-Pytest用例失败如何重跑?(pytest-rerunfailures的简单使用)
111 0
|
测试技术
Pytest 系列(26)- 清空 allure 历史报告记录
Pytest 系列(26)- 清空 allure 历史报告记录
572 0
Pytest 系列(26)- 清空 allure 历史报告记录
|
开发工具
Pytest----生成allure执行报告
Pytest----生成allure执行报告
265 0
Pytest----生成allure执行报告