Bootstrap

pytest.ini python_files配置多个文件

python_files如需要控制多测试用例脚本是可以使用空格隔开。

[pytest]

addopts = -s --alluredir report

testpaths = ./scripts/

python_files = test_*.py cc*.py

python_classes = Test*

python_functions = test_*

下过如下图:

 

testpaths同样也适用: 如需要执行scrips下或者其他文件路径下xx 可以使用。使用空格隔开

testpaths=./scripts/ ./xx/xx.py

;