From 5e04dd7ca691a97583c8c2115d7c633538778e2f Mon Sep 17 00:00:00 2001 From: teald Date: Tue, 17 Sep 2024 09:57:18 -0700 Subject: [PATCH] =?UTF-8?q?test(nox):=20=F0=9F=90=9B=20Use=20editable=20mo?= =?UTF-8?q?de=20for=20unit=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index daeb8daf..e4ab1608 100644 --- a/noxfile.py +++ b/noxfile.py @@ -564,7 +564,7 @@ def dragons_dev_tests(session: nox.Session) -> None: def unit_tests(session: nox.Session) -> None: """Run the unit tests.""" install_test_dependencies(session) - session.install(".") + session.install("-e", ".") # Positional arguments after -- are passed to pytest. pos_args = session.posargs