Skip to content

Commit

Permalink
[Feature] - Auto-build test (#6271)
Browse files Browse the repository at this point in the history
* Auto-build test

* Mark
  • Loading branch information
IgorWounds authored Apr 1, 2024
1 parent ad8df99 commit 4e0453a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions openbb_platform/tests/test_auto_build.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
"""Test the auto_build feature."""

import importlib
import sys
from unittest.mock import patch

import pytest

# pylint: disable=redefined-outer-name, unused-import, import-outside-toplevel


@pytest.fixture(autouse=True)
def setup_mocks():
with patch(
"openbb_core.app.static.package_builder.PackageBuilder.auto_build"
) as mock_auto_build:
mock_auto_build.return_value = None
yield mock_auto_build


@pytest.fixture
def openbb_module(setup_mocks):
if "openbb" in sys.modules:
importlib.reload(sys.modules["openbb"])
else:
pass
return setup_mocks


@pytest.mark.integration
def test_autobuild_called(openbb_module):
"""
Test that auto_build is called upon importing openbb.
"""
openbb_module.assert_called_once()

0 comments on commit 4e0453a

Please sign in to comment.