summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Radovanovic <74266147+IgorWounds@users.noreply.github.com>2023-09-18 12:41:16 +0200
committerIgor Radovanovic <74266147+IgorWounds@users.noreply.github.com>2023-09-18 12:41:16 +0200
commit2729ba59ac7e98eb770d7c5db55670cb72f5dc0b (patch)
tree69bd51b93f5406f4417085b9ea873aa61f4b1fcf
parent649ef7438aafc2be3e9007b5e51d88cf6aa2aae4 (diff)
Update nox
-rw-r--r--noxfile.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/noxfile.py b/noxfile.py
index 1ded71281cb..045831de24b 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -5,7 +5,10 @@ test_locations = ["openbb_sdk/sdk/core/tests", "openbb_sdk/providers"]
@nox.session(python=["3.8", "3.9", "3.10", "3.11"])
def tests(session):
- session.install("./openbb_sdk[all]")
- session.install("pytest")
- session.install("pytest-cov")
- session.run("pytest", *test_locations, "--cov=openbb_sdk/")
+ session.install("poetry")
+ # run a shell command
+ session.run("ls", "-la")
+ # session.run("sh", "./openbb_sdk/install_all.sh")
+ # session.install("pytest")
+ # session.install("pytest-cov")
+ # session.run("pytest", *test_locations, "--cov=openbb_sdk/")