From b76e9ffc0a36e24f8a8ff5ac7e6396ad6a2e2eef Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Sat, 29 Oct 2022 01:52:05 +0800 Subject: [PATCH] force to install cligen in the tests (#188) * force to install cligen in the tests * Update weave.nimble --- weave.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weave.nimble b/weave.nimble index 0fcc584..057459b 100644 --- a/weave.nimble +++ b/weave.nimble @@ -102,7 +102,7 @@ task test, "Run Weave tests": test "-d:danger", "benchmarks/matmul_gemm_blas/test_gemm_output.nim" task test_gc_arc, "Run Weave tests with --gc:arc": - exec "nimble install cligen" + exec "nimble install -y cligen" test "--gc:arc", "weave/cross_thread_com/channels_spsc_single.nim" test "--gc:arc", "weave/cross_thread_com/channels_spsc_single_ptr.nim" test "--gc:arc", "weave/cross_thread_com/channels_mpsc_unbounded_batch.nim"