-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
52 lines (42 loc) · 1.16 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -- Packaging --------------------------------------
[metadata]
description-file = README.md
[qgis-plugin-ci]
plugin_path = bd_topo_extractor
project_slug = TO BE SET WITH THE GITLAB/GITHUB SLUGIFIED PROJECT NAME (IN PROJECT'S URL)
github_organization_slug = TO BE SET WITH THE GITHUB USER/ORGANIZATION NAME
# -- Code quality ------------------------------------
[isort]
ensure_newline_before_comments = True
force_grid_wrap = 0
include_trailing_comma = True
line_length = 88
multi_line_output = 3
profile = black
use_parentheses = True
# -- Tests ----------------------------------------------
[tool:pytest]
addopts =
--junitxml=junit/test-results.xml
--cov-config=setup.cfg
--cov=bd_topo_extractor
--cov-report=html
--cov-report=term
--cov-report=xml
--ignore=tests/_wip/
norecursedirs = .* build dev development dist docs CVS fixtures _darcs {arch} *.egg venv _wip
python_files = test_*.py
testpaths = tests
[coverage:run]
branch = True
omit =
.venv/*
*tests*
[coverage:report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
show_missing = True