From 6b635d3ec080c9514442e2617d1ab868050a39d9 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 13 Mar 2025 07:48:28 -0400 Subject: [PATCH] script/build-with-container: fix incorrect build invocation for tests The `tests` build target was set to build the "normal" target but it needs to build the tests. Signed-off-by: John Mulligan --- src/script/build-with-container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/build-with-container.py b/src/script/build-with-container.py index aee8658c98c68..6107c8cfa3efc 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -572,7 +572,7 @@ def bc_run_tests(ctx): [ "bash", "-c", - f"cd {ctx.cli.homedir} && source ./run-make-check.sh && build && run", + f"cd {ctx.cli.homedir} && source ./run-make-check.sh && build tests && run", ], ) with ctx.user_command(): -- 2.39.5