From 9c46c990543f436e2617885940d78396675cabb7 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Fri, 3 Apr 2020 23:28:12 +0300 Subject: [PATCH] Re-enable testing --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7309dcd53..975056f5a 100644 --- a/Makefile +++ b/Makefile @@ -100,7 +100,10 @@ libbacktrace: # in a Makefile recipe but works when prefixing it with `bash`. No idea how the PATH is overridden. DISABLE_TEST_FIXTURES_SCRIPT := 0 test: | build deps - echo Fake test completed! +ifeq ($(DISABLE_TEST_FIXTURES_SCRIPT), 0) + V=$(V) scripts/setup_official_tests.sh +endif + $(ENV_SCRIPT) nim test $(NIM_PARAMS) beacon_chain.nims && rm -f 0000-*.json $(TOOLS): | build deps for D in $(TOOLS_DIRS); do [ -e "$${D}/$@.nim" ] && TOOL_DIR="$${D}" && break; done && \