From 2f3cabd4ae655b0d3f6b3ad3070b497e94876030 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 22 Aug 2024 15:21:55 +0200 Subject: [PATCH] includes testTools in testAll --- build.nims | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build.nims b/build.nims index 205495b8..23e3eeca 100644 --- a/build.nims +++ b/build.nims @@ -43,19 +43,20 @@ task build, "build codex binary": task test, "Run tests": testCodexTask() +task testTools, "Run Tools tests": + toolsCirdlTask() + test "testTools" + task testAll, "Run all tests (except for Taiko L2 tests)": testCodexTask() testContractsTask() testIntegrationTask() + testToolsTask() task testTaiko, "Run Taiko L2 tests": codexTask() test "testTaiko" -task testTools, "Run Tools tests": - toolsCirdlTask() - test "testTools" - import strutils import os