Skip to content

Commit b88d093

Browse files
committed
Fix missing test dependency
1 parent d7760be commit b88d093

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def pytest_argv():
4949

5050
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
5151
def test(session):
52-
session.install(".[async,requests,orjson]", env=INSTALL_ENV)
52+
session.install(".[dev]", env=INSTALL_ENV)
5353

5454
session.run(*pytest_argv(), *(session.posargs))
5555

@@ -118,5 +118,5 @@ def lint(session):
118118

119119
@nox.session()
120120
def docs(session):
121-
session.install(".[docs]")
121+
session.install(".[docs,orjson]")
122122
session.run("sphinx-build", "docs/sphinx/", "docs/sphinx/_build", "-b", "html")

0 commit comments

Comments
 (0)