Python Testing with pytest, Second Edition: excluding 'play' cases (page 70)

@brianokken

“If we want to eliminate the test cases with ‘play’ or ‘create,’ we can further zoom in:”

pytest -v -k “todo and not (play or create)”

There are no test cases with “play” so it’s odd to try eliminating them.