mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 09:36:52 +03:00
Use django_coverage_plugin to check template test coverage.
This commit is contained in:
parent
a1ec736a9f
commit
d1de33fb3e
|
@ -2,6 +2,10 @@
|
|||
All enhancements and patches to cookiecutter-django will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [2015-11-11]
|
||||
### Added
|
||||
- Added django_coverage_plugin to measure Django template coverage (@audreyr)
|
||||
|
||||
## [2015-11-09]
|
||||
### Changed
|
||||
- Now using py.test for our test suite!! (@hackebrot)
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
[run]
|
||||
include = {{cookiecutter.repo_name}}/*
|
||||
omit = *migrations*, *tests*
|
||||
plugins =
|
||||
django_coverage_plugin
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Local development dependencies go here
|
||||
-r base.txt
|
||||
coverage==4.0.2
|
||||
django_coverage_plugin==1.0
|
||||
Sphinx
|
||||
django-extensions==1.5.9
|
||||
Werkzeug==0.10.4
|
||||
|
|
|
@ -8,6 +8,7 @@ psycopg2==2.6.1
|
|||
{%- endif %}
|
||||
|
||||
coverage==4.0.2
|
||||
django_coverage_plugin==1.0
|
||||
flake8==2.5.0
|
||||
django-test-plus==1.0.9
|
||||
factory_boy==2.6.0
|
||||
|
|
Loading…
Reference in New Issue
Block a user