@@ -120,7 +120,7 @@ release:
120120# ##################################################
121121# ## Tests and Simulation ###
122122# ##################################################
123- .PHONY : test-e2e test-unit test-integration test-system test-cascade test-sn-manager
123+ .PHONY : test-e2e test-unit test-integration test-system test-cascade test-self-healing test- sn-manager
124124.PHONY : install-lumera setup-supernodes system-test-setup install-deps
125125.PHONY : gen-cascade gen-supernode
126126test-unit :
@@ -152,7 +152,7 @@ gen-supernode:
152152 --grpc-gateway_out=gen \
153153 --grpc-gateway_opt=paths=source_relative \
154154 --openapiv2_out=gen \
155- proto/supernode/service.proto proto/supernode/status.proto proto/supernode/storage_challenge.proto
155+ proto/supernode/service.proto proto/supernode/status.proto proto/supernode/storage_challenge.proto proto/supernode/self_healing.proto
156156
157157# Define the paths
158158SUPERNODE_SRC =supernode/main.go
@@ -201,8 +201,12 @@ test-cascade:
201201 @echo " Running cascade e2e tests..."
202202 @cd tests/system && ${GO} mod tidy && ${GO} test -tags=system_test -v -run TestCascadeE2E .
203203
204+ # Run self-healing e2e tests only
205+ test-self-healing :
206+ @echo " Running self-healing e2e tests..."
207+ @cd tests/system && ${GO} mod tidy && ${GO} test -tags=system_test -v -run ' ^TestSelfHealingE2E' .
208+
204209# Run sn-manager e2e tests only
205210test-sn-manager :
206211 @echo " Running sn-manager e2e tests..."
207212 @cd tests/system && ${GO} test -tags=system_test -v -run ' ^TestSNManager' .
208-
0 commit comments