@@ -31,7 +31,7 @@ override ENV_FILE := tests/utils/.env
31
31
MVN_VERSION ?= 1.0.0
32
32
33
33
# Coherence CE version to run base tests against
34
- COHERENCE_VERSION ?= 22.06.2
34
+ COHERENCE_VERSION ?= 22.06.4
35
35
COHERENCE_GROUP_ID ?= com.oracle.coherence.ce
36
36
COHERENCE_WKA1 ?= server1
37
37
COHERENCE_WKA2 ?= server1
@@ -106,19 +106,19 @@ build-test-images: ## Build the Test images
106
106
.PHONY : generate-proto
107
107
generate-proto : # # Generate Proto Files
108
108
mkdir -p $(PROTO_DIR ) || true
109
- curl -o $(PROTO_DIR ) /services.proto https://raw.githubusercontent.com/oracle/coherence/22.06.4 /prj/coherence-grpc/src/main/proto/services.proto
110
- curl -o $(PROTO_DIR ) /messages.proto https://raw.githubusercontent.com/oracle/coherence/22.06.4 /prj/coherence-grpc/src/main/proto/messages.proto
111
- python -m grpc_tools.protoc --proto_path=$(CURRDIR ) /etc/proto --python_out=$(CURRDIR ) /coherence --grpc_python_out=$(CURRDIR ) /coherence $(CURRDIR ) /etc/proto/messages.proto $(CURRDIR ) /etc/proto/services.proto
109
+ curl -o $(PROTO_DIR ) /services.proto https://raw.githubusercontent.com/oracle/coherence/$( COHERENCE_VERSION ) /prj/coherence-grpc/src/main/proto/services.proto
110
+ curl -o $(PROTO_DIR ) /messages.proto https://raw.githubusercontent.com/oracle/coherence/$( COHERENCE_VERSION ) /prj/coherence-grpc/src/main/proto/messages.proto
111
+ python -m grpc_tools.protoc --proto_path=$(CURRDIR ) /etc/proto --python_out=$(CURRDIR ) /src/ coherence --grpc_python_out=$(CURRDIR ) /src /coherence $(CURRDIR ) /etc/proto/messages.proto $(CURRDIR ) /etc/proto/services.proto
112
112
sed -e ' s/import messages_pb2 as messages__pb2/import coherence.messages_pb2 as messages__pb2/' \
113
- < $(CURRDIR ) /coherence/services_pb2_grpc.py > $(CURRDIR ) /coherence/services_pb2_grpc.py.out
114
- mv $(CURRDIR ) /coherence/services_pb2_grpc.py.out $(CURRDIR ) /coherence/services_pb2_grpc.py
113
+ < $(CURRDIR ) /src/ coherence/services_pb2_grpc.py > $(CURRDIR ) /src /coherence/services_pb2_grpc.py.out
114
+ mv $(CURRDIR ) /src/ coherence/services_pb2_grpc.py.out $(CURRDIR ) /src /coherence/services_pb2_grpc.py
115
115
116
116
# ----------------------------------------------------------------------------------------------------------------------
117
117
# Run tests with code coverage
118
118
# ----------------------------------------------------------------------------------------------------------------------
119
119
.PHONY : test
120
120
test : # #
121
- pytest -W error --cov coherence --cov-report=term --cov-report=html
121
+ pytest -W error --cov src/ coherence --cov-report=term --cov-report=html
122
122
123
123
# ----------------------------------------------------------------------------------------------------------------------
124
124
# Run standards validation across project
0 commit comments