Files
OpenBB/openbb_platform/extensions/tests/test_docstring_examples.py
2025-07-06 18:26:41 +00:00

13 lines
292 B
Python

"""Test utils."""
import pytest
from .utils.helpers import check_docstring_examples
@pytest.mark.integration
def test_docstring_examples():
"""Test that the docstring examples execute without errors."""
errors = check_docstring_examples()
assert not errors, "\n".join(errors)