mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-03 00:11:17 +08:00
* PyDocstyle Compliant batch 1 * Batch 2 * Batch 3 * Batch 4 * Batch 5 * Batch 6 * Batch 7 * Linting * MyPy * mypy things * black * more mypy * black * fix that * black again * undo that * Fix error message * pylint --------- Co-authored-by: montezdesousa <79287829+montezdesousa@users.noreply.github.com> Co-authored-by: Danglewood <85772166+deeleeramone@users.noreply.github.com>
13 lines
294 B
Python
13 lines
294 B
Python
"""Configuration for pytest."""
|
|
|
|
# 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():
|
|
"""Set environment variables for testing."""
|
|
os.environ["OPENBB_AUTO_BUILD"] = "false"
|