Abacn commented on code in PR #38328:
URL: https://github.com/apache/beam/pull/38328#discussion_r3163547560
##########
sdks/python/apache_beam/io/gcp/bigtableio_it_test.py:
##########
@@ -138,7 +140,16 @@ def add_rows(self, num_rows, num_families,
num_columns_per_family):
return cells
+ def skip_if_not_dataflow_runner(self) -> bool:
+ # skip if dataflow runner is not specified
+ if not self._runner or "dataflowrunner" not in self._runner.lower():
+ self.skipTest(
+ "Streaming with exactly-once route has the requirement "
+ "`beam:requirement:pardo:on_window_expiration:v1`, "
+ "which is currently only supported by the Dataflow runner")
+
def test_read_xlang(self):
+ self.skip_if_not_dataflow_runner()
Review Comment:
also read test should not be affected
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]