From ed6e4b147d98b9ed8f6e918b9e832dbca5d18ecc Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Thu, 29 Dec 2022 10:55:28 -0800 Subject: [PATCH] Don't install '.' in bindep target. The bindep target needs to be able to run when distro deps required to install Zuul are not yet installed (as bindep is what tells the user what distro deps to install). Drop the session install for '.' to address this. Change-Id: I1dfa125df7dfaf9601880f4eadbfafb91ab01945 --- noxfile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 4f582f7ae1..cdba605f06 100644 --- a/noxfile.py +++ b/noxfile.py @@ -47,7 +47,6 @@ def bindep(session): set_standard_env_vars(session) set_env(session, 'SQLALCHEMY_WARN_20', '1') session.install('bindep') - session.install('.') session.run('bindep', 'test')