mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-07 06:23:26 +08:00
* small changes - moving provider inside the core * uptade readme * lint * remove old provider readme * leftovers * refactor website examples * ruff * fix nox * relock * fix fails_to_deliver headers * fix for tests that have renamed endpoints * fix discovery * removed test for renamed endpoint * fix broken syntax - test_search_financial_attributes * fix cash/income/balance * fix derivatives tests * fix etf tests * fix news tests * fix regulators * black * wrong test param * sort equity gainers/losers by percent * platform markdown generation import * Hotfix/fix int tests core merge (#5779) * removing tests on old endpoint * removing visualization on old endpoint * fixing equity tests * fixing examples * fix news tests * fix index test * example * add comments * example --------- Co-authored-by: Diogo Sousa <montezdesousa@gmail.com> --------- Co-authored-by: montezdesousa <79287829+montezdesousa@users.noreply.github.com> Co-authored-by: Diogo Sousa <montezdesousa@gmail.com> Co-authored-by: Danglewood <85772166+deeleeramone@users.noreply.github.com> Co-authored-by: Pratyush Shukla <ps4534@nyu.edu>
26 lines
571 B
Python
26 lines
571 B
Python
import nox
|
|
|
|
test_locations = [
|
|
"openbb_platform/tests",
|
|
"openbb_platform/core",
|
|
"openbb_platform/providers",
|
|
"openbb_platform/extensions",
|
|
]
|
|
|
|
|
|
@nox.session(python=["3.9", "3.10", "3.11"])
|
|
def tests(session):
|
|
session.install("poetry", "toml")
|
|
session.run(
|
|
"python",
|
|
"./openbb_platform/dev_install.py",
|
|
"-e",
|
|
"all",
|
|
external=True,
|
|
)
|
|
session.install("pytest")
|
|
session.install("pytest-cov")
|
|
session.run(
|
|
"pytest", *test_locations, "--cov=openbb_platform/", "-m", "not integration"
|
|
)
|