如何在funcargs函數中放入pdb?我怎樣才能看到funcargs函數中的打印語句的輸出?如何調試funcargs函數?
我原來的問題包括以下內容,但事實證明,我只是在梳理錯誤的funcarg。嘆。
我想:
print "hi from inside funcargs"
使用和不使用-s調用。
我嘗試:
import pytest pytest.set_trace()
和:
import pdb pdb.set_trace()
和:
raise "hi from inside funcargs"
無產生的任何輸出或造成測試失敗。