Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Schmidt committed Jan 9, 2024
1 parent de0f41e commit d0c20b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func TestYamlToConf(t *testing.T) {
t.Logf("Skipping getExtraTests: %v", err)
}

testFiles = append(testFiles, extraTests...)
testFiles = append(extraTests, testFiles...)

for i, tf := range testFiles {
var err error
Expand Down Expand Up @@ -312,7 +312,7 @@ func TestYamlToConf(t *testing.T) {
version := getVersion(tf.Arguments)
id := runServer(version, confPath, dockerClient, t, tf)

time.Sleep(time.Second * 3) // need this to allow logs to accumulate
time.Sleep(time.Second * 5) // need this to allow logs to accumulate

stopServer(id, dockerClient)
checkContainerLogs(id, t, tf, tmpServerLogPath)
Expand Down Expand Up @@ -712,7 +712,7 @@ func TestConfToYaml(t *testing.T) {
version := getVersion(tf.Arguments)
id := runServer(version, finalConfPath, dockerClient, t, tf)

time.Sleep(time.Second * 3) // need this to allow logs to accumulate
time.Sleep(time.Second * 5) // need this to allow logs to accumulate

stopServer(id, dockerClient)
checkContainerLogs(id, t, tf, tmpServerLogPath)
Expand Down

0 comments on commit d0c20b8

Please sign in to comment.