测试自动化顾问 2020-04-16
如果你还想从头学起Pytest,可以看看这个系列的文章哦!
https://www.cnblogs.com/poloyy/category/1690628.html
pip3 install allure-pytest -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
这是运行代码的包结构
# 是项目文件夹名称 15allure │ conftest.py │ test_1.py │ __init__.py │ ├─test_51job │ │ conftest.py │ │ test_case1.py │ │ __init__.py │ ├─test_toutiao │ │ test_case2.py │ ├─test_weibo │ │ conftest.py │ │ test_case3.py │ │ __init__.py │
# 外层conftest.py @pytest.fixture(scope="session") def login(): print("====登录功能,返回账号,token===") name = "testyy" token = "npoi213bn4" yield name, token print("====退出登录!!!====")
import pytest @pytest.mark.parametrize("n", list(range(5))) def test_get_info(login, n): sleep(1) name, token = login print("***基础用例:获取用户个人信息***", n) print(f"用户名:{name}, token:{token}")
import pytest @pytest.fixture(scope="module") def open_51(login): name, token = login print(f"###用户 {name} 打开51job网站###")
from time import sleep import pytest @pytest.mark.parametrize("n", list(range(5))) def test_case2_01(open_51, n): sleep(1) print("51job,列出所有职位用例", n) @pytest.mark.parametrize("n", list(range(5))) def test_case2_02(open_51, n): sleep(1) print("51job,找出所有python岗位", n)
from time import sleep import pytest @pytest.mark.parametrize("n", list(range(5))) def test_no_fixture(login, n): sleep(1) print("==没有__init__测试用例,我进入头条了==", login)
import pytest @pytest.fixture(scope="function") def open_weibo(login): name, token = login print(f"&&& 用户 {name} 返回微博首页 &&&")
from time import sleep import pytest @pytest.mark.parametrize("n", list(range(5))) class TestWeibo: def test_case1_01(self, open_weibo, n): sleep(1) print("查看微博热搜", n) def test_case1_02(self, open_weibo, n): sleep(1) print("查看微博范冰冰", n)
要使Allure能够在测试执行期间收集测试结果,只需添加 --alluredir 选项,并提供指向应存储结果的文件夹的路径
pytest -n auto --alluredir=allure
可以看到,这不是我们想要的结果,一堆json、txt文件....
allure serve allure
然后就会自动在默认浏览器中显示生成的报告
从包名-模块名-测试用例
从包名-模块名-类名-测试用例