From d7c69187300579f4a5226f2ce0321021c5e7635d Mon Sep 17 00:00:00 2001 From: Igor Radovanovic <74266147+IgorWounds@users.noreply.github.com> Date: Wed, 10 Jan 2024 16:40:01 +0100 Subject: Disable auto_build on test run (#5937) * Disable auto_build on test run * Move to conftest --- openbb_platform/tests/conftest.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openbb_platform/tests/conftest.py b/openbb_platform/tests/conftest.py index c35312c6cda..5348bc9d309 100644 --- a/openbb_platform/tests/conftest.py +++ b/openbb_platform/tests/conftest.py @@ -1,3 +1,9 @@ # TODO: See if we can dynamically import the test modules under the openbb_platform # TODO: Add global fixture for headers here + +import os + + +def pytest_configure(): + os.environ["OPENBB_AUTO_BUILD"] = "false" -- cgit v1.2.3