pytest+allure 入门

使用allure如何生成自动化测试报​​​​​​告 ?一文详解allure的使用 。_allure测试报告-CSDN博客

例子:

复制代码
import allure
import pytest
import os


@allure.epic("闹钟")
@allure.feature("闹钟增删")
class TestSchedule():

    def setup_class(self):
        print("清理测试数据--------删除所有闹钟")


    @allure.story("添加闹钟:响铃一次、循环闹钟")
    @pytest.mark.dependency(name='add_schedule')  # 命名为add_schedule,其他用例依赖他
    def test_add_schedule(self):
        pytest.assume("00000" == "00000")

    @allure.story("添加重复闹钟")
    @allure.title("测试添加重复闹钟")
    @allure.description("预期结果:测试添加重复闹钟fail")
    @pytest.mark.dependency(depends=['add_schedule'])
    def test_add_same_schedule(self):
        pytest.assume("00000" == "1111")

    @allure.story("查询-删除闹钟")
    @allure.title("测试查询-删除闹钟")
    @allure.description("预期结果:测试查询-删除闹钟success")
    @pytest.mark.dependency(depends=['add_schedule'])
    def test_query_del_schedule(self):
        with allure.step("查询闹钟"):
            pytest.assume("00000" == "00000")

        # 删除闹钟
        with allure.step("删除闹钟"):
            pytest.assume("00000" == "00000")

    @allure.story("语音添加闹钟")
    def test_add_schedule_nlp(self):
        pytest.assume("00000" == "00000")

@allure.epic("闹钟")
@allure.feature("闹钟音量")
class TestScheduleVolume():
    # X30特有功能
    @allure.story("闹钟音量调节")
    def test_schedule_volume(self):
        pytest.assume("00000" == "00000")


if __name__ == "__main__":
    pytest.main(["./test5.py", "-s", "-v", "--alluredir=./results/data", "--clean-alluredir"])
    os.system('allure generate ./results/data/ -o ./results/report --clean')
    os.system('allure open -h 127.0.0.1 -p 8883 ./results/report')
相关推荐
<花开花落>2 天前
将Python第三方库转换为真正的 pytest 插件
pytest
春风又。5 天前
接口自动化——初识pytest
python·测试工具·自动化·pytest
南部余额5 天前
playwright解决重复登录问题,通过pytest夹具自动读取storage_state用户状态信息
前端·爬虫·python·ui·pytest·pylawright
小码哥说测试8 天前
接口自动化进阶 —— Pytest全局配置pytest.ini文件详解!
自动化测试·软件测试·测试工具·自动化·pytest·测试工程师
天才测试猿9 天前
Python常用自动化测试框架—Pytest
自动化测试·软件测试·python·功能测试·测试工具·测试用例·pytest
Rhys..9 天前
2、pytest核心功能(进阶用法)
开发语言·python·pytest
一只天蝎的晋升之路10 天前
Python中常用的测试框架-pytest和unittest
开发语言·python·pytest
明月与玄武10 天前
pytest-xdist 进行高效并行自动化测试
pytest·pytest-xdist·进行高效并行自动化测试
测试笔记(自看)11 天前
Python+Requests+Pytest+YAML+Allure接口自动化框架
python·自动化·pytest·allure
活跃家族11 天前
Jsonpath使用
python·pytest