summaryrefslogtreecommitdiffstats
path: root/noxfile.py
blob: 02726297a916aca644259c0021b26c24061b988c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
    )