From cafb3644e2c6e3a4294572d1be28c2c5d86ae43d Mon Sep 17 00:00:00 2001 From: Daniel Ramirez-Chiquillo Date: Thu, 7 Aug 2025 03:32:52 -0500 Subject: [PATCH] Fix Makefile line continuation syntax in test-release target (#7834) #7833 Fix a typo on the `Makefile` that was causing `make test` to run `http_api` tests when they should have been ignored. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b9677c8c7a..59f45ea826 100644 --- a/Makefile +++ b/Makefile @@ -143,7 +143,7 @@ build-release-tarballs: # test vectors. test-release: cargo test --workspace --release --features "$(TEST_FEATURES)" \ - --exclude ef_tests --exclude beacon_chain --exclude slasher --exclude network + --exclude ef_tests --exclude beacon_chain --exclude slasher --exclude network \ --exclude http_api # Runs the full workspace tests in **release**, without downloading any additional