summaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorManlio Perillo <manlio.perillo@gmail.com>2023-05-02 11:06:58 +0200
committerManlio Perillo <manlio.perillo@gmail.com>2023-05-02 11:13:31 +0200
commit7a40c4584e9118e1b218ff7c424e524b046abfbc (patch)
tree2727e518ce4dccb153acccb77a130b2880ef2224 /build.zig
parent74b48192e4ab3f9b8dbc5ac1e40f295f88a976d8 (diff)
Restore unit tests
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.zig b/build.zig
index 38890c2..383a231 100644
--- a/build.zig
+++ b/build.zig
@@ -210,9 +210,8 @@ 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));
+ const test_step = b.step("test", "Run all the tests");
+ test_step.dependOn(tests.addCliTests(b, &exercises));
}
var use_color_escapes = false;