Claudio Jolowicz

Results 115 comments of Claudio Jolowicz

> If you mean can you place environments anywhere, the answer is yes. That is what I meant, thanks. Absolute paths won't be very portable and may be surprising behavior...

Are we concerned about users trying something like `venv_location="tests"`? They might expect this to land under `.nox` but it would create files within their test suite.

A pyvenv.cfg with a home key is always present in a virtual environment, CPython needs it to build sys.path. It doesn't depend on the tool that creates it or the...

> In this case, should I add a check that, if venv_location exists, that it is a virtualenv? Yes, I think this is a good safeguard. > I'm fine restricting...