Remove unnecessary rm command from setup_env

The removal of the dowloaded .tar.gz file is happening
on line 188 which makes the second removal of the .tar.gz
file redundant - the second call was also not matching the
name of the file.

Change-Id: Ia86d8ad368336e1af6ab4838510dcad453e12059
This commit is contained in:
Martin Kopec 2021-10-07 16:53:08 +00:00
parent 2fff054f62
commit 08a64544e1

View File

@ -203,7 +203,6 @@ $python virtualenv.py ${TEMPEST_DIR}/.venv --python="${PYPATH}"
cd ..
rm -rf virtualenv-${VENV_VERSION}
rm virtualenv-${VENV_VERSION}.tar.gz
${WORKDIR}/.venv/bin/python -m pip install -c ${UPPER_CONSTRAINTS_FILE} -e .
cd ${TEMPESTCONF_DIR}
${WORKDIR}/.venv/bin/python -m pip install -c ${UPPER_CONSTRAINTS_FILE} -e .