mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-23 03:29:42 +01:00
unclechu's fork of gRPC-haskell
cbits | ||
examples/echo | ||
include | ||
src/Network/GRPC | ||
tests | ||
.gitignore | ||
benchmarks.html | ||
grpc-haskell.cabal | ||
LICENSE | ||
README.md | ||
Setup.hs | ||
stack.yaml |
Running the tests
In order to run the tests, you will need to have the grpcio
, gevent
, and
grpcio-tools
python packages installed. You can install them using
pip
. It is recommended that you use a python virtualenv to do this.
$ virtualenv path/to/virtualenv # to create a virtualenv
$ . path/to/virtual/env/bin/activate # to use an existing virtualenv
$ pip install grpcio-tools gevent
$ pip install grpcio # Need to install grpcio-tools first to avoid a versioning problem