要在Python中使用pytest进行代码调试,请按照以下步骤操作:
pip install pytest
pytest
模块并添加一个测试函数。测试函数的命名通常以test_
开头,并使用assert
语句来验证代码的正确性。例如:def test_addition():
assert add(2, 3) == 5
pytest <your_test_file_name>.py
test_
开头的函数。测试通过后,将输出类似于以下的成功消息:=========================== test session starts ============================
...
collected 1 item
<your_test_file_name>.py . [100%]
============================ 1 passed in 0.03s =============================
-k
选项来运行特定的测试函数,例如:pytest -k test_addition
import pdb; pdb.set_trace()
然后,重新运行pytest。当代码执行到断点时,它将暂停并进入pdb调试模式。在此模式下,可以使用命令行界面执行各种调试操作,例如查看变量值、单步执行代码等。
q
并按Enter键。通过以上步骤,您可以在Python中使用pytest进行代码调试。