We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd354a commit b185940Copy full SHA for b185940
noxfile.py
@@ -129,13 +129,12 @@ def prepare_venv(session: nox.sessions.Session) -> None:
129
130
"""
131
lockfile = session_lockfile(session)
132
- print(f"prepare_venv: {lockfile}")
133
venv_dir = session.virtualenv.location_name
134
135
if not venv_populated(session):
136
# environment has been created but packages not yet installed
137
# populate the environment from the lockfile
138
- logger.debug(f"Populating conda env at {venv_dir}")
+ logger.debug(f"Populating conda env at {venv_dir} using {lockfile}")
139
session.conda_install("--file", str(lockfile))
140
cache_venv(session)
141
0 commit comments