File: pyproject.toml

package info (click to toggle)
exhale 0.3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,816 kB
  • sloc: python: 9,048; cpp: 1,260; javascript: 915; f90: 29; ansic: 18; makefile: 16
file content (36 lines) | stat: -rw-r--r-- 889 bytes parent folder | download | duplicates (2)
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
[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",
]
markers = [
    "setup_raises",
]

########################################################################################
[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",
]