forked from gcovr/gcovr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (47 loc) · 1.6 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
53
54
55
56
[metadata]
description = Generate C/C++ code coverage reports with gcov
license = BSD
license_files = LICENSE.txt
url = https://gcovr.com
project_urls =
Github = https://github.com/gcovr/gcovr
Issue Tracker = https://github.com/gcovr/gcovr/issues
maintainer = Lukas Atkinson
maintainer_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Topic :: Utilities
keywords = gcc, gcov, lcov, coverage, Jenkins, Cobertura
[bdist_wheel]
universal=1
[coverage:report]
exclude_lines =
[#]\s*pragma: no cover
^\s*raise AssertionError\b
^\s*raise NotImplementedError\b
^\s*assert False\b
# Line length and excludes to be compatible with black
[flake8]
max-line-length = 88
ignore = E203, E501, W503
exclude = .git, __pycache__, gcovr/tests/cmake_gtest/build/_deps
[tool:pytest]
addopts = -v --timeout=60 --doctest-modules --ignore-glob=*/linked/subdir/*