Skip to content

Commit

Permalink
fix: Update appengine standard noxfile_config.py to fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
holtskinner committed Jun 13, 2023
1 parent aaa077e commit a3e65a5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions appengine/standard/noxfile_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

import time


TEST_CONFIG_OVERRIDE = {
# You can opt out from the test for specific Python versions.
"ignored_versions": ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"],
Expand Down Expand Up @@ -52,10 +51,12 @@ def wrap_in_retries(*args, **kwargs):
result = func(*args, **kwargs)
return result
except Exception as e:
print(f"Attempt #{attempt} failed to install {*args}, {**kwargs}")
print(
"Attempt #{} failed to install {}, {}".format(attempt, args, kwargs)
)
time.sleep(5)
raise e

return wrap_in_retries


Expand Down

0 comments on commit a3e65a5

Please sign in to comment.