forked from amzn/MXFusion
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (26 loc) · 715 Bytes
/
setup.cfg
File metadata and controls
31 lines (26 loc) · 715 Bytes
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
# Configuration for pytest; enable coverage
# XML, HTML, and terminal reports.
[tool:pytest]
addopts =
--verbose
--ignore=build/private
--doctest-modules
--cov mxfusion
--cov-report term-missing
--cov-report html:build/documentation/coverage
--cov-report xml:build/documentation/coverage/coverage.xml
# Uncomment to enforce a minimum code coverage threshold.
# --cov-fail-under 50
testpaths = testing
# Additional coverage.py settings.
[coverage:run]
branch = true
parallel = true
[coverage:paths]
source =
src/
build/lib/*/site-packages/
[coverage:html]
directory = build/documentation/coverage
[coverage:xml]
output = build/documentation/coverage/coverage.xml