forked from xflr6/graphviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
44 lines (39 loc) · 784 Bytes
/
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
[metadata]
license_file = LICENSE.txt
[sdist]
formats = zip
[tool:pytest]
minversion = 6
testpaths =
README.rst
docs
graphviz
tests
addopts =
--doctest-modules
--doctest-glob='*.rst' --ignore=docs/conf.py
--doctest-continue-on-failure
# pytest summary: all except (E)rror
# - (f)ailed
# - (s)kipped
# - (x/X)failed/passed
# - (p/P)assed (no output)
-r fsxX
--durations=10
--cov --cov-report=term --cov-report=html
--strict-config --strict-markers
mock_use_standalone_module = true
log_cli = true
log_cli_level = WARNING
log_file = test-log.txt
log_file_level = DEBUG
[coverage:run]
source = graphviz
branch = false
omit = */conftest.py
[pytype]
inputs = graphviz
[flake8]
ignore = E126,E128,W503
max-line-length = 100
exclude = docs, build, .tox