File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 1
1
# .coveragerc to control coverage.py
2
2
[run]
3
- source = pygritools
3
+ source = pygridtools
4
4
branch = True
5
5
include = pygridtools/*.py
6
- omit = tests/*
6
+ omit = pygridtools/ tests/*
7
7
8
8
[report]
9
9
include = pygridtools/*.py
10
- omit = tests/*
11
10
ignore_errors = True
11
+ omit =
12
+ pygridtools/tests/*
13
+ pygridtools/testing/*
12
14
13
15
# Regexes for lines to exclude from consideration
14
16
exclude_lines =
15
- # Have to re-enable the standard pragma
16
17
pragma: no cover
17
-
18
- # Don't complain if tests don't hit defensive assertion code:
18
+ def __repr__
19
+ if self.debug:
20
+ if settings.DEBUG
21
+ raise AssertionError
19
22
raise NotImplementedError
20
- except NotImplementedError
21
- # Ignore pass
22
- pass
23
+ if 0:
24
+ if __name__ == .__main__.:
You can’t perform that action at this time.
0 commit comments