Skip to content

Commit

Permalink
increase test timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Turrado <[email protected]>
  • Loading branch information
Jorge Turrado committed Jul 19, 2022
1 parent 2393058 commit cf00024
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/run-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function run_tests {
# TODO - Remove condition after all tests have been migrated to Go.
if [[ $test_case == *_test.go ]]
then
go test -v -tags e2e -timeout 15m $test_case > "${test_case}.log" 2>&1 &
go test -v -tags e2e -timeout 20m $test_case > "${test_case}.log" 2>&1 &
else
./node_modules/.bin/ava $test_case > "${test_case}.log" 2>&1 &
fi
Expand Down Expand Up @@ -75,7 +75,7 @@ function run_tests {
# TODO - Remove condition after all tests have been migrated to Go.
if [[ $test_case == *_test.go ]]
then
go test -v -tags e2e -timeout 15m $test_case > "${test_case}.retry.log" 2>&1 &
go test -v -tags e2e -timeout 20m $test_case > "${test_case}.retry.log" 2>&1 &
else
./node_modules/.bin/ava $test_case > "${test_case}.retry.log" 2>&1 &
fi
Expand Down

0 comments on commit cf00024

Please sign in to comment.