The previous command hardcoded `tests/` before {posargs}, so passing a
specific test path caused pytest to collect both `tests/` and the path,
running the whole suite instead of the requested test. Using
{posargs:-n 5 tests/} keeps the default parallel full-suite behavior
when no args are given but lets `tox -- <test::path>` run a single test.