Bug in builds/pip.sh causes failure if NO_TEST_ON_INSTALL=1 (#11858)
do_virtualenv_pip_test() uses ${CLEAN_VENV_DIR} which is defined in
do_clean_virtualenv_smoke_test(). But if NO_TEST_ON_INSTALL is set to 1
${CLEAN_VENV_DIR} would never be defined, and pip.sh will fail.
It is very likely that we actually meant to use ${VENV_DIR} instead.
Loading
Please sign in to comment