From 74173d2c614c0a8e058e42b65de36057cee9b5a5 Mon Sep 17 00:00:00 2001 From: fmoletta Date: Tue, 29 Oct 2024 17:40:36 -0300 Subject: [PATCH] Restore Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 39eb36b52..39440f534 100644 --- a/Makefile +++ b/Makefile @@ -94,10 +94,10 @@ TEST_PATTERN ?= / # The endpoints tested may be limited by supplying a test pattern in the form "/endpoint_1|enpoint_2|..|enpoint_n" # For example, to run the rpc-compat suites for eth_chainId & eth_blockNumber you should run: # `make run-hive SIMULATION=ethereum/rpc-compat TEST_PATTERN="/eth_chainId|eth_blockNumber"` -run-hive: build-image ## ๐Ÿงช Run Hive testing suite +run-hive: build-image setup-hive ## ๐Ÿงช Run Hive testing suite cd hive && ./hive --sim $(SIMULATION) --client ethereumrust --sim.limit "$(TEST_PATTERN)" -run-hive-debug: build-image ## ๐Ÿž Run Hive testing suite in debug mode +run-hive-debug: build-image setup-hive ## ๐Ÿž Run Hive testing suite in debug mode cd hive && ./hive --sim $(SIMULATION) --client ethereumrust --sim.limit "$(TEST_PATTERN)" --docker.output clean-hive-logs: ## ๐Ÿงน Clean Hive logs