pytest.ini配置文件

pytest.ini是pytest的配置文件

可以修改pytest的默认行为

不能使用任何中文符号,包括汉字,空格,引号,冒号等等

作用:

1)修改用例的命名规则

;执行check_开头和test_开头的所有文件,后边一定要加*

python_files = check_* test_*

;执行所有以Test和Check开头的类

python_classes = Test* Check*

;执行所有以test_和check_开头的方法

python_functions = test_* check_*

2)配置日志格式,比代码配置更方便

[pytest]
;执行check_开头和test_开头的所有文件,后边一定要加*
python_files = check_* test_*
;执行所有以Test和Check开头的类
python_classes = Test* Check*
;执行所有以test_和check_开头的方法
python_functions = test_* check_*
;日志开关 true false
log_cli = true
;日志级别
log_cli_level = info
;打印详细日志,相当于命令行加 -vs
addopts = --capture=no
;日志格式
log_cli_format = %(asctime)s [%(levelname)s] %(message)s (%(filename)s:%(lineno)s)
;日志时间格式
log_cli_date_format = %Y-%m-%d %H:%M:%S
;日志文件位置
log_file = ./log/test.log
;日志文件等级
log_file_level = info
;日志文件格式
log_file_format = %(asctime)s [%(levelname)s] %(message)s (%(filename)s:%(lineno)s)
;日志文件日期格式
log_file_date_format = %Y-%m-%d %H:%M:%S
;标签
markers = str
    int
    bignum
    float

3)添加标签,防止运行过程中报警告错误

;标签
markers = str
    int
    bignum
    float

4)指定执行目录

testpaths =

5)排除搜索目录,忽略某些文件夹/目录

norecursedirs = 

6)添加默认参数:

addopts = -vs --alluredir=./result

你可能感兴趣的:(pytest测试框架,python)