Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration/fixtures/mini_sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, server_address, app):
self.project_config_simulate_pending = False
self.project_config_ignore_revision = False

self.timeout = 5
self.timeout = 10

@property
def internal_error_dsn(self):
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/fixtures/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ def __init__(self, consumer, options, topic_name, timeout=None):
self.consumer = consumer
self.test_producer = kafka_producer(options)
self.topic_name = topic_name
self.timeout = timeout or 5
self.timeout = timeout or 10

# Connect to the topic and poll a first test message.
# First poll takes forever, the next ones are fast.
self.assert_empty(timeout=5)
self.assert_empty()

def poll(self, timeout=None):
if timeout is None:
Expand Down
Loading