We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8beed2d commit 7792db1Copy full SHA for 7792db1
pkg/cmd/teamcity-trigger/main.go
@@ -126,6 +126,9 @@ func runTC(queueBuild func(string, map[string]string)) {
126
// Queue stress builds. One per configuration per test target.
127
for _, testTarget := range strings.Split(string(targets), "\n") {
128
testTarget = strings.TrimSpace(testTarget)
129
+ if testTarget == "" {
130
+ continue
131
+ }
132
// By default, run each package for up to 100 iterations.
133
maxRuns := 100
134
maxTime := getMaxTime(testTarget)
0 commit comments