forked from alteryx/featuretools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 840 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
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = [
"setuptools >= 47",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=featuretools/tests/entry_point_tests/add-ons"
testpaths = [
"featuretools/tests/*"
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning"
]
[tool.isort]
profile = "black"
forced_separate = "featuretools"
known_first_party = "featuretools"
skip = "__init__.py"
multi_line_output = 3
[tool.coverage.run]
source = ["featuretools"]
omit = [
"*/add-ons/**/*"
]
[tool.coverage.report]
exclude_lines =[
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if self._verbose:",
"if verbose:",
"if profile:",
"pytest.skip"
]