aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorChris Boesch <[email protected]>2023-05-01 20:43:26 +0200
committerGitHub <[email protected]>2023-05-01 20:43:26 +0200
commitf9aec283c80acb969bb7e2cf4662ef7ad252b831 (patch)
treea589ace746b26d2f1c587eb911588f31230630ec /build.zig
parent371a8637b3d21ff9d63d20f6007443805b847073 (diff)
parentf02389e9255d339676fc6b8c517d4f9af6c7dade (diff)
downloadziglings-f9aec283c80acb969bb7e2cf4662ef7ad252b831.tar.xz
ziglings-f9aec283c80acb969bb7e2cf4662ef7ad252b831.zip
Merge pull request #273 from chrboesch/patch_error
cli tests removed to solve 272
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 383a231..38890c2 100644
--- a/build.zig
+++ b/build.zig
@@ -210,8 +210,9 @@ 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));
+ // Disabled, see issue 272
+ // const test_step = b.step("test", "Run all the tests");
+ // // test_step.dependOn(tests.addCliTests(b, &exercises));
}
var use_color_escapes = false;