Merge commit '98bca0b55277bae736a99f1861217fa843418328' into increase-test-replicas

This commit is contained in:
Tom Wilkie
2016-01-12 21:55:12 +00:00
6 changed files with 543 additions and 1 deletions
+3 -1
View File
@@ -138,7 +138,9 @@ func updateScheduler(test string, duration float64) {
func getSchedule(tests []string) ([]string, error) {
var (
testRun = "integration-" + os.Getenv("CIRCLE_BUILD_NUM")
project = os.Getenv("CIRCLE_PROJECT_REPONAME")
buildNum = os.Getenv("CIRCLE_BUILD_NUM")
testRun = project + "-integration-" + buildNum
shardCount = os.Getenv("CIRCLE_NODE_TOTAL")
shardID = os.Getenv("CIRCLE_NODE_INDEX")
requestBody = &bytes.Buffer{}