Lila25mila
Jan. 29, 2019, 1:53 p.m.

How to use Coverage in Django

When you are developing a large project, it is possible to accidentally forget some parts of the code that need to be tested. Coverage.py is a python tool to help you with this.


Installation

Use pip or easy_install as you like

  1. pip install coverage
Starting and uninstalling

To run in a Django project, use the command:

  1. overage run --source='.' manage.py test the-app-you-want-to-test

This command will fill in ".coverage" which is located in COVERAGE_FILE and then you can see the results or report. If you need to delete the received data, use the command:

  1. coverage erase
For one file

If you only want to test Python code, then you need to do:

  1. coverage run your_program.py arg1 arg2 arg3

There are several additional options that you can look at link .
You can learn about templates in the plugins section .

View result

If you want to display results on the command line:

  1. coverage report

For clearer and more convenient reports:

  1. coverage html

To know exactly what part of your code is covered by tests, use the following command:

  1. coverage annotate -d directory-where-to-put-annotated-files

The program will generate the same source code file with additional syntax:

- A line with ">" means that it has been executed.

- A line starting with "!" means that it was not executed.

- A line starting with "-" means that the line has been excluded from the coverage statistics.

Good level of coverage

Good coverage is usually 90%. However, if the result is 100%, this may be a bad signal, since it may be a matter of coverage, and not the quality of the tests.

A few tips:

- Be careful with the quality of your tests.

- Don't slow down your developer speeds for the sake of coverage.

- Use coverage to find unverified code and decide if it deserves coverage.

Exclude code

Sometimes we need to exclude some code that doesn't need coverage. There are several options:

- Specifying files to exclude and skip in .coveragerc.

- Writing in one line of the comment block.

  1. # pragma: no cover

For example, if you want to exclude generated code from coverage because it must be supported by the generation tool:

  1. def generated_code(): # pragma: no cover
  2. do_something()

More info at Coverage.py documentation.

By article asked0question(s)

2

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
  • Last comments
  • AK
    April 1, 2025, 11:41 a.m.
    Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup