forked from nv-morpheus/Morpheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 983 Bytes
/
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
[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 = [
"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',
]
addopts = "--benchmark-disable"
[tool.yapfignore]
ignore_patterns = [
"**/*.pyx",
"**/*.pxd"
]