Complete the code to install the pytest plugin using pip.
pip install pytest-[1]The correct plugin name is pytest-cov for coverage reporting.
Complete the code to list all installed pytest plugins.
pytest --[1]The --plugins option shows all installed pytest plugins.
Fix the error in the command to uninstall a pytest plugin.
pip [1] pytest-covThe correct pip command to uninstall a package is pip uninstall.
Fill both blanks to write a pytest command that runs tests with the coverage plugin and outputs a report.
pytest --[1] --cov-report=[2]
Use --cov to enable coverage and --cov-report=html to generate an HTML report.
Fill all three blanks to write a pytest command that runs tests, shows detailed output, and uses the random order plugin.
pytest --[1] --[2] --random-order=[3]
--verbose shows detailed test output, --capture=no disables output capture, and --random-order=random runs tests in random order using the plugin.