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

Commit

Permalink
Moved timeout flag to the right pip command.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyolight committed Oct 4, 2016
1 parent 4a5afc4 commit 8d6aa29
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 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 @@ -140,7 +143,6 @@ 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 \
--timeout=30 \
${DEST_WHEELHOUSE}/nupic.bindings-*.whl

# Run the nupic.core c++ tests
Expand Down

0 comments on commit 8d6aa29

Please sign in to comment.