From 09babb682cc39fc1c4b9e4c2ae6aae0ea698baa6 Mon Sep 17 00:00:00 2001 From: Jonny Saunders Date: Wed, 20 Mar 2024 13:55:55 -0700 Subject: [PATCH] Update noxfile.py --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index d9c08bf0b..7ba28129f 100644 --- a/noxfile.py +++ b/noxfile.py @@ -21,7 +21,7 @@ def docs_test(session): """ Same as `docs`, but rebuild everything and fail on warnings for testing """ - session.install("-r", "requirements.txt") + session.install("-e", ".") cmd = ["sphinx-build"] cmd.extend(['-W', '--keep-going', '-E', '-a']) cmd.extend(build_command + session.posargs)