On this page
article
Tip #93: Use pytest over unittest for new projects
Python tip #93: Use pytest over unittest for new projects.
Tip
Use pytest over unittest for new projects
Why
Following this practice makes your Python code more readable, maintainable, and less error-prone.
Example
# Before (avoid)
# ... less idiomatic approach ...
# After (prefer)
# ... idiomatic Python 3.10+ approach ...