#how to activate all tests in all files in root.zig?

1 messages · Page 1 of 1 (latest)

mortal elbow
#

Mathlib is in a different module, I believe you need an additional test runner for each module you build

#

Otherwise you would be running std tests all the time if you think about it

#

Or do this:

test {
    _ = @import("path/to/mathlib.zig");
}