Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1115 from rhyolight/pip-timeout
Browse files Browse the repository at this point in the history
DEVOPS-212: pip install timeouts
  • Loading branch information
rhyolight committed Oct 4, 2016
2 parents f3d1fe4 + 8d6aa29 commit c8ff92b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ci/build-and-test-nupic-bindings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ pip install ${PIP_USER} pycapnp==0.5.8

# Install nupic.bindings dependencies; the nupic.core cmake build depends on
# some of them (e.g., numpy).
pip install --ignore-installed ${PIP_USER} -r ${NUPIC_CORE_ROOT}/bindings/py/requirements.txt
pip install ${PIP_USER} \
--ignore-installed \
--timeout=30 \
-r ${NUPIC_CORE_ROOT}/bindings/py/requirements.txt

#
# Build nupic.bindings
Expand Down Expand Up @@ -138,7 +141,9 @@ python setup.py bdist_wheel --dist-dir ${DEST_WHEELHOUSE} ${EXTRA_WHEEL_OPTIONS}
#

# Install nupic.bindings before running c++ tests; py_region_test depends on it
pip install ${PIP_USER} --ignore-installed ${DEST_WHEELHOUSE}/nupic.bindings-*.whl
pip install ${PIP_USER} \
--ignore-installed \
${DEST_WHEELHOUSE}/nupic.bindings-*.whl

# Run the nupic.core c++ tests
cd ${NUPIC_CORE_ROOT}/build/release/bin
Expand Down

0 comments on commit c8ff92b

Please sign in to comment.