diff --git a/.github/trigger_files/beam_PostCommit_Python_Dependency.json b/.github/trigger_files/beam_PostCommit_Python_Dependency.json index 96e4dc0aa998..16209484727a 100644 --- a/.github/trigger_files/beam_PostCommit_Python_Dependency.json +++ b/.github/trigger_files/beam_PostCommit_Python_Dependency.json @@ -1,4 +1,4 @@ { "comment": "Modify this file in a trivial way to cause this test suite to run", - "modification": 3 - } \ No newline at end of file + "modification": 4 + } diff --git a/sdks/python/test-suites/tox/py310/build.gradle b/sdks/python/test-suites/tox/py310/build.gradle index 8902f53a5482..482563cc3522 100644 --- a/sdks/python/test-suites/tox/py310/build.gradle +++ b/sdks/python/test-suites/tox/py310/build.gradle @@ -44,22 +44,9 @@ project.tasks.register("preCommitPyCoverage") { // e.g. pyarrow and pandas also run on PreCommit Dataframe and Coverage project.tasks.register("postCommitPyDep") {} -// Create a test task for supported major versions of pyarrow -// We should have a test for the lowest supported version and -// For versions that we would like to prioritize for testing, -// for example versions released in a timeframe of last 1-2 years. - -toxTask "testPy310pyarrow-6", "py310-pyarrow-6", "${posargs}" -test.dependsOn "testPy310pyarrow-6" -postCommitPyDep.dependsOn "testPy310pyarrow-6" - -toxTask "testPy310pyarrow-15", "py310-pyarrow-15", "${posargs}" -test.dependsOn "testPy310pyarrow-15" -postCommitPyDep.dependsOn "testPy310pyarrow-15" - -toxTask "testPy310pyarrow-16", "py310-pyarrow-16", "${posargs}" -test.dependsOn "testPy310pyarrow-16" -postCommitPyDep.dependsOn "testPy310pyarrow-16" +// Create a test task for supported major versions of pyarrow. +// Keep in sync with [testenv:py{310,311}-pyarrow-...] in tox.ini +// (versions released in roughly the last 1-2 years). toxTask "testPy310pyarrow-17", "py310-pyarrow-17", "${posargs}" test.dependsOn "testPy310pyarrow-17" @@ -89,6 +76,14 @@ toxTask "testPy310pyarrow-23", "py310-pyarrow-23", "${posargs}" test.dependsOn "testPy310pyarrow-23" postCommitPyDep.dependsOn "testPy310pyarrow-23" +toxTask "testPy310pyarrow-24", "py310-pyarrow-24", "${posargs}" +test.dependsOn "testPy310pyarrow-24" +postCommitPyDep.dependsOn "testPy310pyarrow-24" + +toxTask "testPy310pyarrow-25", "py310-pyarrow-25", "${posargs}" +test.dependsOn "testPy310pyarrow-25" +postCommitPyDep.dependsOn "testPy310pyarrow-25" + // Create a test task for each supported minor version of pandas toxTask "testPy310pandas-14", "py310-pandas-14", "${posargs}" test.dependsOn "testPy310pandas-14"