You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run pdb's h (help) command during a pytest run with --pdb and it reports c (cont, continue) and debug as undocumented:
(Pdb) h
Documented commands (type help <topic>):
========================================
EOF cl down j next return tbreak w
a clear enable jump p retval u whatis
alias commands exit l pp run unalias where
args condition h list q rv undisplay
b d help ll quit s unt
break disable ignore longlist r source until
bt display interact n restart step up
Miscellaneous help topics:
==========================
exec pdb
Undocumented commands:
======================
c cont continue debug
Under regular pdb, they are documented:
(Pdb) h
Documented commands (type help <topic>):
========================================
EOF c d h list q rv undisplay
a cl debug help ll quit s unt
alias clear disable ignore longlist r source until
args commands display interact n restart step up
b condition down j next return tbreak w
break cont enable jump p retval u whatis
bt continue exit l pp run unalias where
Miscellaneous help topics:
==========================
exec pdb
The docstrings are missing from pytest's wrapped methods here:
Run pdb's
h
(help
) command during a pytest run with--pdb
and it reportsc
(cont
,continue
) anddebug
as undocumented:Under regular pdb, they are documented:
The docstrings are missing from pytest's wrapped methods here:
pytest/src/_pytest/debugging.py
Lines 156 to 163 in c85faf0
They aren't missing for the other wrapped commands like
q
(quit
).This is for pytest 8.3.3 but seems to be on
main
too from the above link.The text was updated successfully, but these errors were encountered: