pytest-random-order - Always assumes that the cacheprovider plugin is always active. It fails in this below case:
In an env:
(env)$ pip list | grep pytest
allure-pytest 2.13.2
cafy-pytest 0.1.0
pytest 7.4.3
pytest-cov 4.1.0
pytest-ordering 0.6
pytest-random-order 1.1.0
pytest-repeat 0.9.3
If we run a pytest script with this -p no:cacheprovider
pytest <Any Basic .py Pytest Script> -p no:cacheprovider
Had to disable random order plugin - To make it work when disable cache parameter is set.
Please Refer this : pytest-dev/pytest#9250