pythonPyTest本页总览PyTest 编写测试 # test_sample.pydef inc(x): return x + 1def test_answer(): assert inc(3) == 5 测试文件以 test_ 开头,测试函数以 test_ 开头。 运行测试 pytest 运行部分测试: pytest -k test_answer# orpytest test_sample.py::test_answer