diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2023-05-02 21:30:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-02 21:30:29 +0200 |
| commit | 72a6287a5f1784b6da091c1ef1cc3cb3c1153d05 (patch) | |
| tree | f16e793961983e1baa2ba66c36b87c98c36b74f3 /build.zig | |
| parent | e2f3a5e5192ba9e28d51c39c258a37003cc9acb0 (diff) | |
| parent | 7a40c4584e9118e1b218ff7c424e524b046abfbc (diff) | |
Merge pull request #275 from perillo/heal-only-in-test
Heal only in test
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; |
