Skip to content

Commit de633e1

Browse files
ryanmatsdpebot
authored andcommitted
Increased timing multiplier for e2e test (GoogleCloudPlatform#125)
* Increased timing multiplier for e2e test * Increased time limit for gce/gke end to end tests
1 parent 930a42d commit de633e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

6-pubsub/tests/test_end_to_end.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def test_end_to_end():
5252

5353
# Use retry because it will take some indeterminate time for the pub/sub
5454
# message to be processed.
55-
@retry(wait_exponential_multiplier=1000, stop_max_attempt_number=15)
55+
@retry(wait_exponential_multiplier=5000, stop_max_attempt_number=12)
5656
def check_for_updated_data():
5757
# Check that the book's information was updated.
5858
response = requests.get(book_url)

7-gce/tests/test_end_to_end.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def test_end_to_end():
5252

5353
# Use retry because it will take some indeterminate time for the pub/sub
5454
# message to be processed.
55-
@retry(wait_exponential_multiplier=1000, stop_max_attempt_number=15)
55+
@retry(wait_exponential_multiplier=5000, stop_max_attempt_number=12)
5656
def check_for_updated_data():
5757
# Check that the book's information was updated.
5858
response = requests.get(book_url)

optional-container-engine/tests/test_end_to_end.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def test_end_to_end():
5252

5353
# Use retry because it will take some indeterminate time for the pub/sub
5454
# message to be processed.
55-
@retry(wait_exponential_multiplier=1000, stop_max_attempt_number=15)
55+
@retry(wait_exponential_multiplier=5000, stop_max_attempt_number=12)
5656
def check_for_updated_data():
5757
# Check that the book's information was updated.
5858
response = requests.get(book_url)

0 commit comments

Comments
 (0)