Merge pull request #275 from perillo/heal-only-in-test

Heal only in test
This commit is contained in:
Chris Boesch 2023-05-02 21:30:29 +02:00 committed by GitHub
commit 02a35e8a09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 68 additions and 32 deletions

View file

@ -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;