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 ...