I think this #pytest plugin exists, but I can't find it: run just 20 randomly selected tests from my test suite.
I don't need splitting into groups, I don't need "the whole suite but in a random order". How can I run a randomly selected subset of my tests?
@nedbat I don’t know if there’s an existing pytest plugin that can do this, but you can add a small hook to your `conftest.py` that gets the behaviour you’re describing: https://github.com/alexwlchan/til/blob/main/python/Run%20a%20randomly%20selected%20subset%20of%20tests%20with%20pytest.md