Files
OpenBB/openbb_platform/extensions/tests/test_docstring_examples.py
Pratyush Shukla 13283fbfce CI listing quick fix (#6002)
* BIGGGG LINTING

* fixing lints

* fixing lints

* black

* very ruff

* no export

* fix hedge_view again

* lints

* platform lints

* lints

* black

* black it @hjoaquim

* fix some more linting

---------

Co-authored-by: hjoaquim <h.joaquim@campus.fct.unl.pt>
2024-01-26 17:08:42 +00:00

13 lines
308 B
Python

"""Test utils."""
import pytest
from extensions.tests.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)