Skip to content

Commit

Permalink
[FAB-3149]Add missing pip packages to install_behave.sh
Browse files Browse the repository at this point in the history
Fix [FAB-3149] added missing pip packages to run behave test.
https://jira.hyperledger.org/browse/FAB-3149

Behave test fails after setting up the behave environment with
"fabric/scripts/install_behave.sh".
According to the error message, pip package listed below is
required to run behave test.

pyOpenSSL
pysha3
ecdsa
python-slugify
b3j0f.aop

Change-Id: I3bf24e5fd19fc43879edbea018ad172c9f2ce9cd
Signed-off-by: Yuki Kondo <[email protected]>
  • Loading branch information
yuki-kon committed Apr 13, 2017
1 parent e1dc407 commit 2595366
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/install_behave.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ pip install behave
pip install nose

# updater-server, update-engine, and update-service-common dependencies (for running locally)
pip install -I flask==0.10.1 python-dateutil==2.2 pytz==2014.3 pyyaml==3.10 couchdb==1.0 flask-cors==2.0.1 requests==2.4.3
pip install -I flask==0.10.1 python-dateutil==2.2 pytz==2014.3 pyyaml==3.10 couchdb==1.0 flask-cors==2.0.1 requests==2.4.3 pyOpenSSL==16.2.0 pysha3==1.0b1

# Python grpc package for behave tests
# Required to update six for grpcio
pip install --ignore-installed six
pip install --upgrade 'grpcio==0.13.1'

# Pip packages required for some behave tests
pip install ecdsa python-slugify b3j0f.aop

# install ruby and apiaryio
#apt-get install --yes ruby ruby-dev gcc
#gem install apiaryio
Expand Down

0 comments on commit 2595366

Please sign in to comment.