Skip to content

Commit

Permalink
Changelog & version bump for 8.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peterebden committed Aug 24, 2017
1 parent 24fc668 commit 46f88d9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 8.6.0
-------------

* Optional support for per-test metrics.


Version 8.5.4
-------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.5.4
8.6.0
3 changes: 1 addition & 2 deletions src/test/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
package test

import (
"context"
"fmt"
"io/ioutil"
"path"
Expand Down Expand Up @@ -47,7 +46,7 @@ func runContainerisedTest(state *core.BuildState, target *core.BuildTarget) ([]b
command = append(command, "-v", testDir+":/tmp/test_in", "-w", "/tmp/test_in", containerName, "bash", "-o", "pipefail", "-c", replacedCmd)
log.Debug("Running containerised test %s: %s", target.Label, strings.Join(command, " "))
_, out, err := core.ExecWithTimeout(target, target.TestDir(), nil, target.TestTimeout, state.Config.Test.Timeout, state.ShowAllOutput, command)
retrieveResultsAndRemoveContainer(target, cidfile, err == context.DeadlineExceeded)
retrieveResultsAndRemoveContainer(target, cidfile, err == nil)
return out, err
}

Expand Down

0 comments on commit 46f88d9

Please sign in to comment.