Skip to content
Merged
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
4 changes: 3 additions & 1 deletion sdks/python/apache_beam/io/gcp/bigquery_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1524,8 +1524,10 @@ def test_insert_rows_json_persistent_retriable_exception(
# Expecting 1 initial call plus maximum number of retries
expected_call_count = 1 + bigquery_tools.MAX_RETRIES

# This relies on runner-specific mocking behavior which can be
# inconsistent on Prism.
with self.assertRaises(Exception) as exc:
with beam.Pipeline() as p:
with beam.Pipeline('FnApiRunner') as p:
_ = (
p
| beam.Create([{
Expand Down
Loading