Complete the code to run tests with coverage in Django.
coverage run --source='.' manage.py [1]
Use test to run Django tests with coverage.
Complete the command to generate a coverage report in the terminal.
coverage [1]The report command shows coverage results in the terminal.
Fix the error in the command to generate an HTML coverage report.
coverage [1] -d coverage_htmlThe html command generates an HTML report in the specified directory.
Fill both blanks to create a coverage report that omits tests folder and shows missing lines.
coverage report --omit=[1] --[2]
Use --omit=tests/* to skip test files and --show-missing to list uncovered lines.
Fill all three blanks to run tests with coverage, generate HTML report, and erase old data.
coverage [1] && coverage [2] --source='.' manage.py test && coverage [3] -d htmlcov
First erase old data, then run tests with run, finally generate HTML report with html.
