We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cda30c commit bcec764Copy full SHA for bcec764
1 file changed
split_tests.go
@@ -16,10 +16,10 @@ var useLineCount bool
16
var junitXMLPath string
17
var testFilePattern = ""
18
var circleCIProjectPrefix = ""
19
-var circleCIBranchName = os.Getenv("CIRCLE_BRANCH")
20
-var splitIndex, _ = strconv.Atoi(os.Getenv("CIRCLE_NODE_INDEX"))
21
-var splitTotal, _ = strconv.Atoi(os.Getenv("CIRCLE_NODE_TOTAL"))
22
-var circleCIAPIKey = os.Getenv("CIRCLECI_API_KEY")
+var circleCIBranchName string
+var splitIndex int
+var splitTotal int
+var circleCIAPIKey string
23
24
func printMsg(msg string, args ...interface{}) {
25
if len(args) == 0 {
0 commit comments