summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Radovanovic <74266147+IgorWounds@users.noreply.github.com>2024-01-10 16:40:01 +0100
committerGitHub <noreply@github.com>2024-01-10 15:40:01 +0000
commitd7c69187300579f4a5226f2ce0321021c5e7635d (patch)
tree443238abc0c3764ba9dc6d2ca35d4c4c045f4f8a
parentc3abc418a80c0d8071503158c5d70c1228915dbe (diff)
Disable auto_build on test run (#5937)
* Disable auto_build on test run * Move to conftest
-rw-r--r--openbb_platform/tests/conftest.py6
1 files changed, 6 insertions, 0 deletions
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"