Kit Sunde
Kit Sunde

Reputation: 37075

What's being used to check code coverage in Django?

Django doesn't appear to have built in support for code coverage. Is therea defacto-standard tool for checking it in Django 1.3?

Upvotes: 2

Views: 185

Answers (1)

lprsd
lprsd

Reputation: 87095

Ned Batchelder's coverage.py is the authoritative tool for test coverage in python.

Upvotes: 6

Related Questions