From 59d92e370f6340a8ad33843a000ff6290fc837c3 Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> Date: Mon, 1 May 2023 19:54:13 +0200 Subject: [PATCH 1/2] cli tests removed to solve 272 --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 383a231..18a1ec3 100644 --- a/build.zig +++ b/build.zig @@ -210,8 +210,8 @@ pub fn build(b: *Build) !void { } ziglings_step.dependOn(prev_step); - const test_step = b.step("test", "Run all the tests"); - test_step.dependOn(tests.addCliTests(b, &exercises)); + // const test_step = b.step("test", "Run all the tests"); + // // test_step.dependOn(tests.addCliTests(b, &exercises)); } var use_color_escapes = false; From 50966adb7ef7412a851766b867d9cc988e76e6d9 Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> Date: Mon, 1 May 2023 20:14:52 +0200 Subject: [PATCH 2/2] comment for the issue added --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index 18a1ec3..38890c2 100644 --- a/build.zig +++ b/build.zig @@ -210,6 +210,7 @@ pub fn build(b: *Build) !void { } ziglings_step.dependOn(prev_step); + // Disabled, see issue 272 // const test_step = b.step("test", "Run all the tests"); // // test_step.dependOn(tests.addCliTests(b, &exercises)); }