daphne/.coveragerc
Tim Watts 56104e7fc6 Tests for file and streaming response handling inside Django (#185)
* add first streaming and file response tests

* iterate over response and not streaming content directly

* add coverage for FileResponse and StreamingHttpResponse

* added tests for headers, json responses, and redirect responses

* rm print statement

* skip failing stringio test
2016-06-01 09:47:50 -07:00

25 lines
455 B
INI

[run]
branch = True
source = channels, django.http.response
omit = channels/tests/*
[report]
show_missing = True
skip_covered = True
omit = channels/tests/*
[html]
directory = coverage_html
[paths]
django_19 =
.tox/py27-django-18/lib/python2.7
.tox/py34-django-18/lib/python3.4
.tox/py35-django-18/lib/python3.5
django_18 =
.tox/py27-django-19/lib/python2.7
.tox/py34-django-19/lib/python3.4
.tox/py35-django-19/lib/python3.5