From: Alfredo Deza Date: Mon, 17 Nov 2014 20:02:07 +0000 (-0500) Subject: install tox, not requirements.txt X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F23%2Fhead;p=ceph-build.git install tox, not requirements.txt Signed-off-by: Alfredo Deza --- diff --git a/radosgw-agent-pull-requests/build/build b/radosgw-agent-pull-requests/build/build index 1a2b434b..33b6b98b 100644 --- a/radosgw-agent-pull-requests/build/build +++ b/radosgw-agent-pull-requests/build/build @@ -12,9 +12,9 @@ mkdir -p $PIP_SDIST_INDEX # Install the package by trying with the cache first, otherwise doing a download only, and then # trying to install from the cache again. -if ! venv/bin/pip install --find-links="file://$PIP_SDIST_INDEX" --no-index -r requirements.txt; then - venv/bin/pip install --download-directory="$PIP_SDIST_INDEX" -r requirements.txt - venv/bin/pip install --find-links="file://$PIP_SDIST_INDEX" --no-index -r requirements.txt +if ! venv/bin/pip install --find-links="file://$PIP_SDIST_INDEX" --no-index tox; then + venv/bin/pip install --download-directory="$PIP_SDIST_INDEX" tox + venv/bin/pip install --find-links="file://$PIP_SDIST_INDEX" --no-index tox fi