forked from DistrictDataLabs/yellowbrick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (35 loc) · 889 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
[metadata]
description-file = DESCRIPTION.txt
license_file = LICENSE.txt
[test]
local_freetype = True
tests = True
[aliases]
test=pytest
[tool:pytest]
addopts = --verbose --cov=yellowbrick --flakes --spec --cov-report=xml --cov-report term
python_files = tests/*
flakes-ignore =
__init__.py UnusedImport
__init__.py ImportStarUsed
test_*.py ImportStarUsed
test_*.py ImportStarUsage
conftest.py UnusedVariable
examples/* ALL
tests/checks.py ALL
docs/_build ALL
spec_header_format = {class_name} ({path})
filterwarnings =
once::UserWarning
once::DeprecationWarning
once::PendingDeprecationWarning
ignore::sklearn.exceptions.ConvergenceWarning
ignore::FutureWarning
[flake8]
# match black maximum line length
max-line-length = 88
extend-ignore = E203
per-file-ignores =
__init__.py:F401
test_*.py:F405,F403
conftest.py:F841