forked from nv-morpheus/Morpheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
26 lines (23 loc) · 947 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
[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, the tests covered by this also need to be run in their own processes until #71 is resolved",
"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"