summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openbb_platform/extensions/tests/utils/integration_tests_testers.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbb_platform/extensions/tests/utils/integration_tests_testers.py b/openbb_platform/extensions/tests/utils/integration_tests_testers.py
index afb0d95e9f1..20e2e5f9116 100644
--- a/openbb_platform/extensions/tests/utils/integration_tests_testers.py
+++ b/openbb_platform/extensions/tests/utils/integration_tests_testers.py
@@ -270,6 +270,10 @@ def check_integration_tests(
processing_command_params, function_params, function, True # type: ignore
)
+ # if "chart" is in missing_items, remove it
+ if "chart" in missing_items:
+ missing_items.remove("chart")
+
all_missing_items.extend(missing_items)
return all_missing_items