mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-09 15:41:23 +08:00
* 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>
13 lines
308 B
Python
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)
|