From a879b25cce93d2e2a488852b2abbebd01c255a2f Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 17 Nov 2014 15:02:07 -0500 Subject: [PATCH] install tox, not requirements.txt Signed-off-by: Alfredo Deza --- radosgw-agent-pull-requests/build/build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/radosgw-agent-pull-requests/build/build b/radosgw-agent-pull-requests/build/build index 1a2b434b9..33b6b98bb 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 -- 2.47.3