From a75671eee8f2089c4a70f4aa8090f4ef366593dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 06:53:24 +0000 Subject: [PATCH] test: add t.Parallel() to capitalization tests Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- cmd/gh-aw/capitalization_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/gh-aw/capitalization_test.go b/cmd/gh-aw/capitalization_test.go index 9457e13d157..c7922daa973 100644 --- a/cmd/gh-aw/capitalization_test.go +++ b/cmd/gh-aw/capitalization_test.go @@ -14,6 +14,7 @@ import ( // - Use lowercase "agentic workflows" when referring generically to workflow files/functionality // - Use capitalized "Agentic Workflows" only when explicitly referring to the product as a whole func TestCapitalizationConsistency(t *testing.T) { + t.Parallel() // Test root command uses product name with capital if !strings.Contains(rootCmd.Short, "GitHub Agentic Workflows") { @@ -50,6 +51,7 @@ func TestCapitalizationConsistency(t *testing.T) { // TestMCPCommandCapitalization specifically tests MCP subcommands func TestMCPCommandCapitalization(t *testing.T) { + t.Parallel() mcpCmd := cli.NewMCPCommand() // MCP command Long description should use lowercase "agentic workflows" @@ -70,6 +72,7 @@ func TestMCPCommandCapitalization(t *testing.T) { // TestTechnicalTermsCapitalization verifies that technical terms remain capitalized func TestTechnicalTermsCapitalization(t *testing.T) { + t.Parallel() // Technical terms that should remain capitalized technicalTerms := []string{"Markdown", "YAML", "MCP"}