溫馨提示×

python pytest如何配置

小樊
81
2024-11-16 00:19:16
欄目: 編程語言

要配置Python pytest,請按照以下步驟操作:

  1. 確保已安裝pytest。如果尚未安裝,可以使用以下命令進行安裝:
pip install pytest
  1. 創(chuàng)建一個名為pytest.ini的配置文件,將其放在項目的根目錄下。這個文件將包含pytest的配置信息。

  2. 編輯pytest.ini文件,添加以下內(nèi)容:

[pytest]
addopts = --cov=./ --cov-report=term-missing

這里,我們配置了以下選項:

  • --cov=./:使用coverage工具測量代碼覆蓋率。
  • --cov-report=term-missing:在終端中顯示代碼覆蓋率報告,未覆蓋的代碼將顯示為紅色。
  1. (可選)如果需要配置更多的pytest選項,可以在pytest.ini文件中添加更多行,例如:
[pytest]
addopts = --maxfail=1 --disable-warnings

這里,我們配置了以下選項:

  • --maxfail=1:當(dāng)測試失敗時立即停止執(zhí)行,不再運行其他測試。
  • --disable-warnings:禁用測試過程中產(chǎn)生的警告信息。
  1. 保存pytest.ini文件并關(guān)閉。

現(xiàn)在,已經(jīng)完成了pytest的配置。接下來,可以使用pytest命令運行測試。例如,如果要運行名為test_example.py的測試文件,請在終端中輸入以下命令:

pytest test_example.py

pytest將按照pytest.ini文件中的配置執(zhí)行測試。

0