👩💻 Join our community of thousands of amazing developers!
https://itnext.io/creating-a-modern-python-development-environment-3d383c944877 pytest with pytest-cov The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries. I prefer pytest over the inbuilt unittest library because it allows for plugins such as pytest-xdist, which enables the execution of multiple tests at once, expediting test runtimes and requires fewer lines of code to produce the same output as unittest. Addi...