forked from svenevs/exhale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (35 loc) · 1.07 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
[build-system]
requires = ["setuptools >= 42", "wheel"]
build-backend = "setuptools.build_meta"
########################################################################################
[tool.pytest.ini_options]
cache_dir = "testing/.cache"
norecursedirs = [
".git/",
"docs/",
"exhale/",
]
python_files = [
"testing/tests/**.py",
]
filterwarnings = [
"default::DeprecationWarning",
"default::PendingDeprecationWarning",
# Bypass docutils warning: DeprecationWarning: 'U' mode is deprecated
"ignore::DeprecationWarning:docutils.io",
# Bypass breathe bug:
# RemovedInSphinx30Warning: function based directive support is now deprecated.
# Use class based directive instead.
"ignore::PendingDeprecationWarning:sphinx.util.docutils",
]
########################################################################################
[tool.coverage.run]
data_file = ".coverage"
include = [
"exhale/**",
"testing/**",
]
omit = [
# Tests generate a conf.py that should not be included in code coverage.
"**/conf.py",
]