Skip to content

Commit 2595366

Browse files
committed
[FAB-3149]Add missing pip packages to install_behave.sh
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]>
1 parent e1dc407 commit 2595366

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/install_behave.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ pip install behave
1616
pip install nose
1717

1818
# updater-server, update-engine, and update-service-common dependencies (for running locally)
19-
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
19+
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
2020

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

26+
# Pip packages required for some behave tests
27+
pip install ecdsa python-slugify b3j0f.aop
28+
2629
# install ruby and apiaryio
2730
#apt-get install --yes ruby ruby-dev gcc
2831
#gem install apiaryio

0 commit comments

Comments
 (0)