Skip to content

Commit 69b013d

Browse files
committed
Fix dependency in zig build test
1 parent 5f97a93 commit 69b013d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ pub fn build(b: *std.Build) void {
7373

7474
const run_unit_tests = b.addRunArtifact(main_tests);
7575
const run_integration_tests = b.addSystemCommand(&[_][]const u8{ "pytest", "-vv", "tests/" });
76-
run_integration_tests.step.dependOn(&main_exe.step);
76+
run_integration_tests.step.dependOn(b.getInstallStep());
7777

7878
var unit_tests_step = b.step("unit-tests", "Run unit tests");
7979
unit_tests_step.dependOn(&run_unit_tests.step);

0 commit comments

Comments
 (0)