File tree 3 files changed +36
-0
lines changed
3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ [report]
2
+ # Regexes for lines to exclude from consideration
3
+ exclude_lines =
4
+ # Have to re-enable the standard pragma
5
+ pragma: no cover
6
+
7
+ # Don't complain about missing debug-only code:
8
+ def __repr__
9
+ if self\.debug
10
+ def __unicode__
11
+ def __repr__
12
+ if settings.DEBUG
13
+ raise NotImplementedError
14
+ from django\.
15
+
16
+ # Don't complain if tests don't hit defensive assertion code:
17
+ raise AssertionError
18
+ raise NotImplementedError
19
+
20
+ # Don't complain if non-runnable code isn't run:
21
+ if 0:
22
+ if __name__ == .__main__.:
23
+
24
+ [run]
25
+ omit =
26
+ *tests*
27
+ *migrations*
28
+ *management*
29
+ *urls*
30
+ *site-packages*
31
+ *src*
32
+ *manage*
33
+ *settings*
Original file line number Diff line number Diff line change 1
1
* .pyc
2
2
templates /
3
+
4
+ .coverage
Original file line number Diff line number Diff line change 1
1
Django >= 1.4
2
+ coverage
You can’t perform that action at this time.
0 commit comments