Complete the code to run pytest with verbose output.
pytest [1]The -v option runs pytest in verbose mode, showing detailed test results.
Complete the command to stop pytest after the first failure.
pytest [1]The --maxfail=1 option tells pytest to stop running tests after the first failure.
Fix the error in the command to disable warnings during pytest run.
pytest [1]The correct option to disable warnings in pytest is --disable-warnings. Other options are invalid or do not exist.
Fill both blanks to run pytest quietly and stop after 2 failures.
pytest [1] [2]
The -q option runs pytest quietly, and --maxfail=2 stops after two failures.
Fill all three blanks to run pytest with verbose output, stop after 3 failures, and disable warnings.
pytest [1] [2] [3]
Use -v for verbose output, --maxfail=3 to stop after three failures, and --disable-warnings to hide warnings.