Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/trigger_files/beam_PostCommit_Python_Dependency.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"comment": "Modify this file in a trivial way to cause this test suite to run",
"modification": 3
}
"modification": 4
}
27 changes: 11 additions & 16 deletions sdks/python/test-suites/tox/py310/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
Loading