DataDesigner/packages/data-designer-engine/tests/conftest.py
Johnny Greco 932e1a1ac2
chore: configure independent pytest settings per subpackage (#278)
* 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
2026-02-02 13:37:15 -05:00

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",
]