Skip to content

Commit

Permalink
Log a timeout that is going to be used for the suite (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
alenkacz committed Sep 17, 2019
1 parent 0b88dd5 commit 211a2f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/test/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,11 @@ func (h *Harness) LoadTests(dir string) ([]*Case, error) {
continue
}

timeout := h.GetTimeout()
h.T.Logf("Going to run test suite with timeout of %d seconds for each step", timeout)

tests = append(tests, &Case{
Timeout: h.GetTimeout(),
Timeout: timeout,
Steps: []*Step{},
Name: file.Name(),
Dir: filepath.Join(dir, file.Name()),
Expand Down

0 comments on commit 211a2f8

Please sign in to comment.