pytest配置文件pytest.ini
生活随笔
收集整理的這篇文章主要介紹了
pytest配置文件pytest.ini
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Python微信訂餐小程序課程視頻
https://edu.csdn.net/course/detail/36074
Python實戰量化交易理財系統
https://edu.csdn.net/course/detail/35475
說明:
pytest.ini 設置參數
例如:
進行如下設置后
執行pytest時默認執行的是pytest??-v -s??test_f.py
[pytest]addopts = -v -s test\_f.py2.?filterwarnings 隱藏一些不推薦使用的警告
[pytest] filterwarnings = ignore:.*U.*mode is deprecated:DeprecationWarning當從[rootdir目錄執行pytest時,如果在命令行中沒有給出特定的目錄,文件或測試ID,則設置應搜索測試的目錄列表。
設置testpaths后,只在設置的路徑中查找測試用例并執行,可配置多個,空格隔開
如下,只查找testcase下的測試用例并執行
[pytest] testpaths = ./testcase超時30s后執行用例失敗
[pytest] timeout = 305.?norecursedirs
pytest.ini配置norecursedirs= lxk? test.py 不搜索執行對應文件夾下或文件下的用例,和testpaths配置完全相反的效果,可配置多個,空格隔開
6.? markers 分組參數
用于對用例分組
[pytest]markers =smoking :high :medium :lower :測試用例中標識,運行pytest -v -m smoking,只執行還有smoking標記的測試用例
@pytest.mark.smokingdef test(): passcmd下使用 pytest -h 命令查看pytest.ini的設置選項:
總結
以上是生活随笔為你收集整理的pytest配置文件pytest.ini的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 面向过程 VS 面向对象
- 下一篇: 2.微信小程序(colorUI)- 构建