From 978d00d1bb3906b6db0b20a52cd4a91aa47183c6 Mon Sep 17 00:00:00 2001 From: Jonny Saunders Date: Wed, 20 Mar 2024 14:19:06 -0700 Subject: [PATCH] Update noxfile.py (#207) --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index d9c08bf0..7ba28129 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)