From a8058fe9e9f1aaeb60545ca1e752a767bac76002 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sat, 14 Mar 2020 00:29:04 +0530 Subject: [PATCH] Speed up `nox -s docs` --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 282e390d2..8dc7abd40 100644 --- a/noxfile.py +++ b/noxfile.py @@ -116,7 +116,7 @@ def test(session): @nox.session def docs(session): - session.install(".") + session.install("-e", ".") session.install("-r", REQUIREMENTS["docs"]) def get_sphinx_build_command(kind):