Skip to content

Commit

Permalink
Disable unsupported custom window type test on samza and spark. (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwb authored Mar 20, 2024
1 parent fb7ba65 commit 389e106
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ def test_custom_merging_window(self):
# Skip until Samza runner supports merging window fns
raise unittest.SkipTest("https://github.com/apache/beam/issues/21049")

def test_custom_window_type(self):
raise unittest.SkipTest("https://github.com/apache/beam/issues/21049")


if __name__ == '__main__':
# Run the tests.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ def test_flattened_side_input(self):
def test_custom_merging_window(self):
raise unittest.SkipTest("https://github.com/apache/beam/issues/20641")

def test_custom_window_type(self):
raise unittest.SkipTest("https://github.com/apache/beam/issues/20641")

# Inherits all other tests from PortableRunnerTest.


Expand Down

0 comments on commit 389e106

Please sign in to comment.