Skip to content

Commit

Permalink
[FAB-1508] Add behave python dependencies
Browse files Browse the repository at this point in the history
https://jira.hyperledger.org/browse/FAB-1508

The behave tests now require the sha3 and OpenSSL packages.  This
changeset adds them as dependencies to the devenv setup scripts as
well as the documentation.

A separate changeset for the fabric-baseimage is pending.

Change-Id: Id995b9a8820ff512b422ada39d5caa0f90586b3a
Signed-off-by: Jason Yellick <jyellick@us.ibm.com>
  • Loading branch information
Jason Yellick authored and gaborh-da committed Jan 5, 2017
1 parent 152ce78 commit 4ed353c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion devenv/setupRHELonZ.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ cd ../..
GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

# 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 sha3==0.2.1
cat >> ~/.bashrc <<HEREDOC
export PATH=$HOME/go/bin:$PATH
export GOROOT=$HOME/go
Expand Down
2 changes: 1 addition & 1 deletion devenv/setupUbuntuOnPPC64le.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ apt-get -y install python-pip
pip install --upgrade pip
pip install behave nose docker-compose

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 grpcio==0.13.1
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 grpcio==0.13.1 pyOpenSSL==16.2.0 sha3==0.2.1
2 changes: 1 addition & 1 deletion docs/dev-setup/devenv.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ settings of the BIOS
```
pip install --upgrade pip
pip install behave nose docker-compose
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 sha3==0.2.1
```

### Steps
Expand Down

0 comments on commit 4ed353c

Please sign in to comment.