Verify code coverage meets minimum threshold using pytest
Preconditions (2)
Step 1: Run pytest with coverage enabled using the command: pytest --cov=your_package_name
Step 2: Check the coverage report summary in the console output
Step 3: Verify that the total coverage percentage is at least 80%
✅ Expected Result: The coverage report shows total coverage percentage of 80% or higher, indicating tests cover at least 80% of the code.