From e4d750e0712c680bb4c6eaaab96682ee8b01a5fe Mon Sep 17 00:00:00 2001 From: ilitteri Date: Wed, 29 Oct 2025 15:03:44 -0300 Subject: [PATCH] Fix make test --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c4f938e74d..10f425d4c36 100644 --- a/Makefile +++ b/Makefile @@ -25,8 +25,10 @@ lint-gpu: lint: lint-l1 lint-l2 ## 🧹 Linter check CRATE ?= * +# CAUTION: It is important that the ethrex-l2 crate remains excluded here, +# as its tests depend on external setup that is not handled by this Makefile. test: ## 🧪 Run each crate's tests - cargo test -p '$(CRATE)' --workspace + cargo test -p '$(CRATE)' --workspace --exclude ethrex-l2 clean: clean-vectors ## 🧹 Remove build artifacts cargo clean