forked from nv-morpheus/Morpheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (52 loc) · 1.7 KB
/
pyproject.toml
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
57
58
59
[build-system]
requires = [
"nvidia-pyindex",
"setuptools",
"versioneer-518",
"wheel",
]
build-backend = "setuptools.build_meta"
# List any markers that users would reasonable want to filter by.
# These show up when querying `pytest --markers`
[tool.pytest.ini_options]
markers = [
"benchmark: Benchmarks",
"slow: Slow tests",
"kafka: Tests that require a running instance of kafka",
"use_cpp: Test support C++ nodes and objects",
"use_python: Test only supports Python nodes and objects",
"replace_callback: Replaces the results_callback in cli",
"reload_modules: Reloads a set of python modules after running the current test"
]
filterwarnings = [
# Warning coming from mlflow's usage of numpy
'ignore:`np.object` is a deprecated alias for the builtin `object`. To silence this warning, use `object` by itself. Doing this will not modify any behavior and is safe',
'ignore:Warning the df property returns a copy, please use the copy_dataframe method or the mutable_dataframe context manager to modify the DataFrame in-place instead.',
]
addopts = "--benchmark-disable"
norecursedirs = "examples/digital_fingerprinting/production"
[tool.yapfignore]
ignore_patterns = [
"**/*.pyx",
"**/*.pxd"
]
[tool.interrogate]
verbose = 2
ignore-private = true
ignore-property-decorators = true
ignore-semiprivate = true
ignore-init-method = true
ignore-init-module = true
ignore-magic = true
ignore-module = true
ignore-nested-functions = true
ignore-regex = [
"supports_cpp_node$",
"^unpack_tuple$",
"^unpack_union$",
# work-around for https://github.com/econchick/interrogate/issues/105
"^error_handler$",
"^term_signal$",
]
exclude = ["morpheus/cli"]
omit-covered-files = true