repo.or.cz
/
stgit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Normalize float tests' whitespace
[stgit.git]
/
pyproject.toml
blob
781e91a364a8b9978fd872205e93d7ff71c1f412
1
[tool.black]
2
line-length = 88
3
skip-string-normalization = true
4
target-version = ['py35']
5
include = '''
6
(
7
\.pyi?$
8
)
9
'''
10
exclude = '''
11
(
12
\/\..*$
13
| \/cmdlist\.py
14
| \/build$
15
| \/dist
16
)
17
'''
18
19
[tool.coverage.run]
20
source = ['stgit']
21
branch = true
22
parallel = true
23
24
[tool.coverage.report]
25
exclude_lines = [
26
"pragma: no cover",
27
"def __repr__",
28
"if self.debug",
29
"raise AssertionError",
30
"raise NotImplementedError",
31
"if 0:",
32
"if __name__ == .__main__.:",
33
]
34
35
[tool.coverage.html]
36
title = 'StGit Coverage Report'
37
show_contexts = true