...

/

The pytest Framework

The pytest Framework

Learn how to use pytest in Python to perform unit testing.

We'll cover the following...

One great testing framework is pytest, which can be installed via pip install pytest. One difference with respect to unittest is that, while it's still possible to classify test scenarios in classes and create object-oriented models of our tests, this is not actually mandatory, and it's possible to write unit tests with less boilerplate by just checking the conditions we want to verify in simple functions with the assert ...