Skip to content

Commit 0595584

Browse files
authored
Skip sliding window tests on samza and spark runner test suites (#35430)
* Skip sliding_windows test on samza and spark runner. * Trigger tests.
1 parent cb5eef5 commit 0595584

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"https://github.com/apache/beam/pull/34830": "testing"
2+
"https://github.com/apache/beam/pull/34830": "testing",
3+
"https://github.com/apache/beam/issues/35429": "testing"
34
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"https://github.com/apache/beam/pull/34830": "testing"
2+
"https://github.com/apache/beam/pull/34830": "testing",
3+
"https://github.com/apache/beam/issues/35429": "testing"
34
}

sdks/python/apache_beam/runners/portability/samza_runner_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ def test_custom_window_type(self):
190190
def test_reshuffle_after_custom_window(self):
191191
raise unittest.SkipTest("https://github.com/apache/beam/issues/34831")
192192

193+
def test_sliding_windows(self):
194+
raise unittest.SkipTest("https://github.com/apache/beam/issues/35429")
195+
193196

194197
if __name__ == '__main__':
195198
# Run the tests.

sdks/python/apache_beam/runners/portability/spark_runner_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ def test_custom_merging_window(self):
191191
def test_custom_window_type(self):
192192
raise unittest.SkipTest("https://github.com/apache/beam/issues/20641")
193193

194+
def test_sliding_windows(self):
195+
raise unittest.SkipTest("https://github.com/apache/beam/issues/35429")
196+
194197
# Inherits all other tests from PortableRunnerTest.
195198

196199

0 commit comments

Comments
 (0)