What is the recommended way of running the tests for a single specific file when that file is inside of a package and refers to things above it?
for example:
❯ zig test example_package/file_with_test.zig
example_package/file_with_test.zig:2:23: error: import of file outside package path: '../outer_thing.zig'
const outer = @import("../outer_thing.zig");
^~~~~~~~~~~~~~~~~~~~
referenced by:
test.check outer value: example_package/file_with_test.zig:10:47
remaining reference traces hidden; use '-freference-trace' to see all reference traces