We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f058682 + 95539a8 commit 18becf1Copy full SHA for 18becf1
1 file changed
noxfile.py
@@ -17,7 +17,7 @@ def changelog(session):
17
@nox.session
18
def docs(session):
19
"""Run github activity on this repository with the current repo."""
20
- session.install("-e", ".")
+ session.install("-e", ".[sphinx]")
21
session.install("-r", "docs/requirements.txt")
22
23
if "live" in session.posargs:
@@ -39,8 +39,8 @@ def docs(session):
39
def test(session):
40
41
session.install("-r", "requirements.txt")
42
+ session.install("-e", ".[testing]")
43
44
# Run github activity and re-use the posargs
45
- cmd = ["pytest"] + session.posargs
+ cmd = ["pytest", "--verbose", "--durations=10"] + session.posargs
46
session.run(*cmd)
0 commit comments