跳到主要内容

PyTest

编写测试

# test_sample.py
def inc(x):
return x + 1

def test_answer():
assert inc(3) == 5

测试文件以 test_ 开头,测试函数以 test_ 开头。

运行测试

pytest

运行部分测试:

pytest -k test_answer
# or
pytest test_sample.py::test_answer