Skip to content

Commit 5564c1d

Browse files
committed
Trigger affected workflows.
1 parent bfa20b7 commit 5564c1d

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"comment": "Modify this file in a trivial way to cause this test suite to run.",
33
"https://github.com/apache/beam/pull/32440": "test new datastream runner for batch"
4-
"modification": 8
4+
"modification": 9
55
}
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"comment": "Modify this file in a trivial way to cause this test suite to run",
3-
"modification": 11
3+
"modification": 10
44
}

sdks/python/apache_beam/io/external/xlang_jdbcio_it_test.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,12 @@
102102
TestPipeline().get_pipeline_options().view_as(StandardOptions).runner is
103103
None,
104104
'Do not run this test on precommit suites.')
105+
@unittest.skipIf(
106+
TestPipeline().get_pipeline_options().view_as(StandardOptions).runner is
107+
not None and
108+
"dataflowrunner" in TestPipeline().get_pipeline_options().view_as(
109+
StandardOptions).runner.lower(),
110+
'Do not run this test on dataflow runner.')
105111
class CrossLanguageJdbcIOTest(unittest.TestCase):
106112
DbData = typing.NamedTuple(
107113
'DbData',

0 commit comments

Comments
 (0)