Skip to content

Instantly share code, notes, and snippets.

@devhero
Last active March 14, 2022 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devhero/8c4cb9801c829d70cfaec457fac239ba to your computer and use it in GitHub Desktop.
Save devhero/8c4cb9801c829d70cfaec457fac239ba to your computer and use it in GitHub Desktop.
pytest cookbook #pytest
# run specific method in a file
pytest app_folder/file.py -k "method keyword"
# enable debugger
pytest app_folder/file.py -k "method keyword" --pdb
# check for setup errors (wrong imports, etc)
pytest --setup-only
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment