Developers will find these mechanisms useful for both exploratory and verification purposes.
sudo pip install virtualenv
sudo pip install virtualenvwrapper
export WORKON_HOME=~/Envs
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv -p /usr/bin/python2.7 behave_venv
This will automaticall switch you to the new environment if successful. In the future, you can switch to the virtual environment using the workon command as shown below.
workon behave_venv
NOTE: If you have issues installing the modules below, and you are running the vagrant environment, consider performing a vagrant destroy followed by a vagrant up.
pip install behave
pip install grpcio-tools
pip install "pysha3==1.0b1"
pip install b3j0f.aop
pip install jinja2
# The pyopenssl install gives errors, but installs succeeds
pip install pyopenssl
pip install ecdsa
pip install python-slugify
pip install pyyaml
Behave requires the peer executable for packaging deployments. To make the peer execute the following command.
#Change to the root fabric folder to perform the following commands.
cd ..
# Optionally perform the following clean if you are unsure of your environments state.
make clean
make peer
The peer executable will be located in the build/bin folder. Make sure that your PATH enviroment variable contains the location. Execute the following command if necessary.
export PATH=$PATH:$GOPATH/src/github.com/hyperledger/fabric/build/bin
The behave system also uses several docker containers. Execute the following commands to create the required docker containers.
make peer-docker
make orderer-docker
Change back to the bddtests folder (Where this readme is located) to execute subsequent behave commands.
cd bddtests
The following behave commands should be executed from within this folder.
behave -k -D cache-deployment-spec
behave -k -D cache-deployment-spec features/bootstrap.feature
Once you are done using behave and you wish to switch back to your normal python environment, issue the following command.
deactivate
This work is licensed under a Creative Commons Attribution 4.0 International License.
s