mirror of
https://github.com/NVIDIA-NeMo/DataDesigner
synced 2026-05-24 09:48:29 +00:00
* chore: configure independent pytest settings per subpackage - Add [tool.pytest.ini_options] to each package's pyproject.toml - Update conftest.py in each package to declare pytest_plugins directly - Remove root-level conftest.py (no longer needed) - Remove testpaths from root pyproject.toml This enables running tests independently per package without relying on root-level configuration. * update out of date comments
7 lines
249 B
Python
7 lines
249 B
Python
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
pytest_plugins = [
|
|
"data_designer.config.testing.fixtures",
|
|
"data_designer.engine.testing.fixtures",
|
|
]
|