【pytest】conftest.py使用

  1. 创建test_project 目录

test_project/sub/test_sub.py

def test_baidu(test_url):

    print(f'sub ={test_url}')

test_project/conftest.py 设置钩子函数 只对当前目录 和子目录起作用

import pytest
#设置测试钩子函数
@pytest.fixture()
def test_url():
    return  "https://www.baidu.com"

test_project/test_demo.py

def test_baidu(test_url):
    print(test_url)

运行

 pytest -s -v ./test_project

或 main 运行

import pytest

if __name__=='__main__':
    #pytest.main(['-s','./fixture'])
    #pytest.main(['-v', './fixture','--junit-xml=./report/log.xml'])
    #pytest.main(['-v', './fixture', '--pastebin=all'])
    pytest.main(['-v','-s' ,'./test_project', '--pastebin=all'])

plugins: anyio-3.5.0
collecting ... collected 2 items

test_project/test_demo.py::test_baidu https://www.baidu.com
PASSED
test_project/sub/test_sub.py::test_baidu sub =https://www.baidu.com
PASSED

============================== 2 passed in 0.05s ==============================
==================== Sending information to Paste Service =====================
pastebin session-log: https://bpa.st/show/H4UQ
相关推荐
测试杂货铺1 小时前
UI自动化测试实战实例
自动化测试·软件测试·python·selenium·测试工具·测试用例·pytest
开源优测6 小时前
深入解析 Pytest 钩子函数及二次开发过程
pytest
开源优测1 天前
深度解析 Pytest 中的 conftest.py
pytest
天天要nx1 天前
D105【python 接口自动化学习】- pytest进阶参数化用法
python·pytest
天天要nx3 天前
D102【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
程序猿000001号3 天前
探索Python的pytest库:简化单元测试的艺术
python·单元测试·pytest
爱学测试的雨果4 天前
分布式测试插件 pytest-xdist 使用详解
分布式·pytest
七灵微6 天前
【测试】Pytest
pytest
钱钱钱端6 天前
Pytest参数详解 — 基于命令行模式!
自动化测试·软件测试·python·jmeter·职场和发展·pytest·压力测试