diff --git a/nimbus.nimble b/nimbus.nimble index ae5937315..62d8cd93a 100644 --- a/nimbus.nimble +++ b/nimbus.nimble @@ -31,6 +31,7 @@ proc test(name: string, lang = "c") = task test, "Run tests": test "all_tests" + test "test_rpc" # debugging tools don't yet have tests # but they should be compilable exec "nim c premix/premix" diff --git a/tests/all_tests.nim b/tests/all_tests.nim index 2856545f7..9f5aca15a 100644 --- a/tests/all_tests.nim +++ b/tests/all_tests.nim @@ -16,7 +16,7 @@ import ./test_code_stream, ./test_generalstate_json, ./test_tracer_json, ./test_persistblock_json, - ./test_rpc, + #./test_rpc, # it crash if we combine it here ./test_op_arith, ./test_op_bit, ./test_op_env,