-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Ben Knoll edited this page Aug 11, 2022
·
4 revisions
python setup.py clean build_py
python setup.py bdist_wheel
cd java
./gradlew build shadowJar
First time setup, follow the instructions for gRPC Gateway requirements.
Build stuff:
cd go
make proto release
cd go
go install mtap-gateway/mtap-gateway.go
The python unit tests run using the version of MTAP installed to the site-packages:
pip install .\[tests]
pytest python/tests
cd java
./gradlew test
First, the go gateway needs to be installed and $GOROOT/bin
needs to be on your $PATH
. From
the root directory:
cd go
go install mtap-gateway/mtap-gateway.go
Second, the Java framework fat jar needs to be built. From the root directory:
cd java
./gradlew build fatJar
If you want to test service discovery via consul, consul needs to be started. From another terminal:
consul agent -dev -ui
Now we're ready to run the integration tests, from the root directory:
pip install .\[tests]
MTAP_JAR=java/build/libs/mtap-all-[MTAP VERSION GOES HERE] pytest python/tests --consul --integration