-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
56 lines (49 loc) · 1.28 KB
/
pyproject.toml
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
53
54
55
56
[build-system]
requires = [
"setuptools>=49.5.0",
"wheel",
"setuptools_scm[toml]>=7.0.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/snek5000/_version.py"
[tool.isort]
known_first_party = ["fluiddyn", "fluidsim_core", "snek5000"]
# multi_line_output = 3
profile = "black"
line_length = 82
[tool.coverage.run]
source = ["snek5000", "snek5000_canonical", "./tests"]
data_file = ".coverage/coverage"
omit = [
"*/try_*.py",
"*/_old_*.py"
]
# Note
# ----
# This seemed the right way to run tests. Install out of place and run tests,
# but report coverage to the source code. However, measuring coverage of
# multiple packages (inc. packages in docs/examples) when installed this way
# seems to be unsupported by Coverage.py.
#
# [tool.coverage.paths]
# source = [
# "./src/",
# ".nox/tests-cov/lib/python*/site-packages/",
# ]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"if __name__ == .__main__.:",
'if "sphinx" in sys.modules:',
"raise FileNotFoundError",
"raise NotImplementedError",
"raise ValueError",
"except KeyError:",
"except ImportError:",
"except AttributeError:",
"except NotImplementedError:",
"except StopIteration:",
]
[tool.coverage.html]
directory = ".coverage/html"