diff --git a/.gitignore b/.gitignore
index a34f512..f0090b0 100644
a
|
b
|
|
2 | 2 | *.pot |
3 | 3 | *.py[co] |
4 | 4 | docs/_build/ |
| 5 | tests/coverage_html/ |
| 6 | tests/.coverage |
| 7 | No newline at end of file |
diff --git a/.hgignore b/.hgignore
index 765a29d..3dc253a 100644
a
|
b
|
syntax:glob
|
4 | 4 | *.pot |
5 | 5 | *.py[co] |
6 | 6 | docs/_build/ |
| 7 | tests/coverage_html/ |
| 8 | tests/.coverage |
| 9 | No newline at end of file |
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt
index cffcbd9..7c58b3e 100644
a
|
b
|
To run tests for just one contrib app (e.g. ``markup``), use the same
|
166 | 166 | method as above:: |
167 | 167 | |
168 | 168 | ./runtests.py --settings=settings markup |
| 169 | |
| 170 | Code coverage |
| 171 | ~~~~~~~~~~~~~ |
| 172 | |
| 173 | [A short guide may go here...] |
| 174 | No newline at end of file |
diff --git a/tests/.coveragerc b/tests/.coveragerc
new file mode 100644
index 0000000..e03dbd1
-
|
+
|
|
| 1 | [run] |
| 2 | omit = runtests,test_sqlite,regressiontests*,modeltests*,*/django/contrib/*/tests*,*/django/utils/unittest*,*/django/utils/simplejson*,*/django/utils/importlib.py,*/django/test/_doctest.py,*/django/core/servers/fastcgi.py,*/django/utils/autoreload.py,*/django/utils/dictconfig.py |
| 3 | |
| 4 | [html] |
| 5 | directory = coverage_html |
| 6 | No newline at end of file |