mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-08 06:51:32 +08:00
13 lines
292 B
Python
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)
|