1、環境搭建html
- 安裝:pip install -U pytest
- 官方參考文檔:https://docs.pytest.org/en/latest/contents.html
2、應用舉例python
腳本1:test.py測試
#!/usr/bin/env python #*-* coding:utf-8 -*- import pytest def add(a,b): return a + b def minus(a,b): return a - b #測試add方法 def test_add(): assert add(1,3) == 2 #測試minus方法 def test_minus(): assert minus(3,1) == 2
運行結果code
腳本2:test.pyhtm
#!/usr/bin/env python #*-* coding:utf-8 -*- import pytest def add(a,b): return a + b def minus(a,b): return a - b #測試add方法 def test_add(): assert add(1,3) == 4 #測試minus方法 def test_minus(): assert minus(3,1) == 2
運行結果blog