Best Practices for Writing Great Python Tests
Pytest has a lot of features, but not many best-practice guides. Here’s a list of the 5 most impactful best-practices we’ve discovered at NerdWallet. At NerdWallet, we have a lot… (more…)
Read more »line_profiler is a module for doing line-by-line profiling of functions.
kernprof is a convenient script for running either line_profiler or the Python
standard library’s cProfile or profile modules, depending on what is available. Read more