From c13244816ebfc308fc932273f865f8de2207958c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 06:46:52 +0000 Subject: [PATCH] test: add t.Parallel() to TestCompileCommandShortFlags Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cmd/gh-aw/compile_flags_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/gh-aw/compile_flags_test.go b/cmd/gh-aw/compile_flags_test.go index 81998ebe3d9..981c88670af 100644 --- a/cmd/gh-aw/compile_flags_test.go +++ b/cmd/gh-aw/compile_flags_test.go @@ -5,6 +5,7 @@ package main import "testing" func TestCompileCommandShortFlags(t *testing.T) { + t.Parallel() forceFlag := compileCmd.Flags().Lookup("force") if forceFlag == nil { t.Fatal("expected --force flag on compile command")