add smithy package to tests
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Emil Lerch 2021-06-30 13:49:02 -07:00
parent dfa0be60b9
commit ebbcdb271b
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -77,6 +77,7 @@ pub fn build(b: *Builder) !void {
const name = try std.fmt.allocPrint(b.allocator, "src/{s}", .{entry.name}); const name = try std.fmt.allocPrint(b.allocator, "src/{s}", .{entry.name});
defer b.allocator.free(name); defer b.allocator.free(name);
const t = b.addTest(name); const t = b.addTest(name);
t.addPackagePath("smithy", "smithy/src/smithy.zig");
t.setBuildMode(mode); t.setBuildMode(mode);
test_step.dependOn(&t.step); test_step.dependOn(&t.step);
} }