Improve while loop in __do_rebase_interactive
[stgit.git] / pyproject.toml
blob781e91a364a8b9978fd872205e93d7ff71c1f412
1 [tool.black]
2 line-length = 88
3 skip-string-normalization = true
4 target-version = ['py35']
5 include = '''
7     \.pyi?$
9 '''
10 exclude = '''
12     \/\..*$
13   | \/cmdlist\.py
14   | \/build$
15   | \/dist
17 '''
19 [tool.coverage.run]
20 source = ['stgit']
21 branch = true
22 parallel = true
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__.:",
35 [tool.coverage.html]
36 title = 'StGit Coverage Report'
37 show_contexts = true