feat(github_actions): Simplify timeout calculation

Signed-off-by: Lucas Schwiderski <lucas@lschwiderski.de>
This commit is contained in:
Lucas Schwiderski 2021-05-08 19:12:52 +02:00
parent 4d83228f00
commit cfe7da8526
No known key found for this signature in database
GPG Key ID: AA12679AAA6DF4D8
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ echo "awesome_log: $awesome_log"
wait_until_success() {
if (( verbose )); then set +x; fi
wait_count=$(echo "${TEST_TIMEOUT} / 0.05" | bc)
wait_count=$((${TEST_TIMEOUT} * 20))
while true; do
set +e
eval reply="\$($2)"