File tree Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,3 @@ services:
14
14
# Let the init system handle signals for us.
15
15
# among other things this helps shutdown be fast
16
16
init : true
17
- # env_file:
18
- # - ./infra/config/local_dev.env
19
- # - .env
Original file line number Diff line number Diff line change @@ -80,3 +80,30 @@ force_grid_wrap = 0
80
80
use_parentheses = true
81
81
ensure_newline_before_comments = true
82
82
line_length = 88
83
+
84
+
85
+ [tool .coverage ]
86
+ # https://github.com/nedbat/coveragepy
87
+ [tool .coverage .run ]
88
+ omit = [
89
+ ' */.local/*' ,
90
+ ' /usr/*' ,
91
+ ' */.venv/*' ,
92
+ ' */.tox/*' ,
93
+ ' */virtualenvs/*' ,
94
+ ]
95
+
96
+ [tool .coverage .report ]
97
+
98
+ exclude_lines = [
99
+ " # noqa" ,
100
+ " raise NotImplementedError" ,
101
+ " pragma: no cover" ,
102
+ " def __repr__" ,
103
+ " if .debug:" ,
104
+ " raise NotImplementedError" ,
105
+ " if __name__ == .__main__.:" ,
106
+ " logger." ,
107
+ " from" ,
108
+ " import"
109
+ ]
You can’t perform that action at this time.
0 commit comments