summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/integration/test_obbject.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/core/integration/test_obbject.py')
-rw-r--r--openbb_platform/core/integration/test_obbject.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/openbb_platform/core/integration/test_obbject.py b/openbb_platform/core/integration/test_obbject.py
index 4a2d1ad339f..aaa1a940ffc 100644
--- a/openbb_platform/core/integration/test_obbject.py
+++ b/openbb_platform/core/integration/test_obbject.py
@@ -41,7 +41,10 @@ def test_to_dataframe(obb):
assert isinstance(stocks_df, pd.DataFrame)
-@pytest.mark.skipif("polars" not in sys.modules, reason="polars not installed")
+@pytest.mark.skipif(
+ "polars" not in sys.modules or "polars-lts-cpu" not in sys.modules,
+ reason="polars not installed",
+)
@pytest.mark.integration
def test_to_polars(obb):
"""Test obbject to polars."""