News

In this video, I'm going to teach you how to write unit tests in Python using a module called Pytest. It's a skill you'll ...
The pytest people agree, and they suggest the use of "parametrized tests". The idea here is that you define the test a single time, but tell pytest which inputs and outputs to provide. You can do this ...
Note, Pytest considers a test for one parameter as a completely independent test. Many things can be achieved with markers like marking a test to skip, skipping on certain conditions, depending on a ...
In my next article, I plan to take a third and final look at pytest, exploring some of the other ways it can interact with (and help) write robust and useful programs. Resources. The pytest website.