From 15d32bf81c0371dda1364ae9245247eb8f2cd1be Mon Sep 17 00:00:00 2001 From: Max Charlamb Date: Mon, 13 Apr 2026 19:31:48 -0400 Subject: [PATCH] Pass remaining arguments to arcade build.ps1 in test step The test invocation of arcade's build.ps1 was not forwarding remaining arguments, preventing callers from passing -projects or other arcade parameters for test runs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- eng/build.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eng/build.ps1 b/eng/build.ps1 index 21e15851a2..ed85d75a0f 100644 --- a/eng/build.ps1 +++ b/eng/build.ps1 @@ -125,7 +125,8 @@ if ($test) { /p:RuntimeSourceFeed="$runtimesourcefeed" ` /p:RuntimeSourceFeedKey="$runtimesourcefeedkey" ` /p:LiveRuntimeDir="$liveRuntimeDir" ` - $testFilterArg + $testFilterArg ` + $remainingargs if ($lastExitCode -ne 0) { exit $lastExitCode