This is an automated email from the ASF dual-hosted git repository.
shunping pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 0595584d986 Skip sliding window tests on samza and spark runner test
suites (#35430)
0595584d986 is described below
commit 0595584d986bd13893aede39a9c4f92cbd5dbc02
Author: Shunping Huang <[email protected]>
AuthorDate: Wed Jun 25 11:12:55 2025 -0400
Skip sliding window tests on samza and spark runner test suites (#35430)
* Skip sliding_windows test on samza and spark runner.
* Trigger tests.
---
.../trigger_files/beam_PostCommit_Python_ValidatesRunner_Samza.json | 3 ++-
.../trigger_files/beam_PostCommit_Python_ValidatesRunner_Spark.json | 3 ++-
sdks/python/apache_beam/runners/portability/samza_runner_test.py | 3 +++
sdks/python/apache_beam/runners/portability/spark_runner_test.py | 3 +++
4 files changed, 10 insertions(+), 2 deletions(-)
diff --git
a/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Samza.json
b/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Samza.json
index cdaa11075bd..cccf60ad1fc 100644
--- a/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Samza.json
+++ b/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Samza.json
@@ -1,3 +1,4 @@
{
- "https://github.com/apache/beam/pull/34830": "testing"
+ "https://github.com/apache/beam/pull/34830": "testing",
+ "https://github.com/apache/beam/issues/35429": "testing"
}
diff --git
a/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Spark.json
b/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Spark.json
index cdaa11075bd..cccf60ad1fc 100644
--- a/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Spark.json
+++ b/.github/trigger_files/beam_PostCommit_Python_ValidatesRunner_Spark.json
@@ -1,3 +1,4 @@
{
- "https://github.com/apache/beam/pull/34830": "testing"
+ "https://github.com/apache/beam/pull/34830": "testing",
+ "https://github.com/apache/beam/issues/35429": "testing"
}
diff --git a/sdks/python/apache_beam/runners/portability/samza_runner_test.py
b/sdks/python/apache_beam/runners/portability/samza_runner_test.py
index 6112a50e851..cc8d947f054 100644
--- a/sdks/python/apache_beam/runners/portability/samza_runner_test.py
+++ b/sdks/python/apache_beam/runners/portability/samza_runner_test.py
@@ -190,6 +190,9 @@ class
SamzaRunnerTest(portable_runner_test.PortableRunnerTest):
def test_reshuffle_after_custom_window(self):
raise unittest.SkipTest("https://github.com/apache/beam/issues/34831")
+ def test_sliding_windows(self):
+ raise unittest.SkipTest("https://github.com/apache/beam/issues/35429")
+
if __name__ == '__main__':
# Run the tests.
diff --git a/sdks/python/apache_beam/runners/portability/spark_runner_test.py
b/sdks/python/apache_beam/runners/portability/spark_runner_test.py
index cf6536be4c2..fe7160d4e18 100644
--- a/sdks/python/apache_beam/runners/portability/spark_runner_test.py
+++ b/sdks/python/apache_beam/runners/portability/spark_runner_test.py
@@ -191,6 +191,9 @@ class
SparkRunnerTest(portable_runner_test.PortableRunnerTest):
def test_custom_window_type(self):
raise unittest.SkipTest("https://github.com/apache/beam/issues/20641")
+ def test_sliding_windows(self):
+ raise unittest.SkipTest("https://github.com/apache/beam/issues/35429")
+
# Inherits all other tests from PortableRunnerTest.