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/workflows/beam_PostCommit_PortableJar_Flink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
CLOUDSDK_CONFIG: ${{ env.KUBELET_GCLOUD_CONFIG_PATH}}
uses: ./.github/actions/gradle-command-self-hosted-action
with:
gradle-command: :sdks:python:test-suites:portable:310:testPipelineJarFlinkRunner
gradle-command: :sdks:python:test-suites:portable:py310:testPipelineJarFlinkRunner
arguments: |
-PpythonVersion=3.10 \
- name: Archive Python Test Results
Expand All @@ -95,4 +95,4 @@ jobs:
commit: '${{ env.prsha || env.GITHUB_SHA }}'
comment_mode: ${{ github.event_name == 'issue_comment' && 'always' || 'off' }}
files: '**/pytest*.xml'
large_files: true
large_files: true
4 changes: 2 additions & 2 deletions .github/workflows/beam_PostCommit_Python_Arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
matrix:
job_name: [beam_PostCommit_Python_Arm]
job_phrase: [Run Python PostCommit Arm]
python_version: ['10', '3.13']
python_version: ['3.10', '3.13']
if: |
github.event_name == 'workflow_dispatch' ||
github.event_name == 'pull_request_target' ||
Expand Down Expand Up @@ -129,4 +129,4 @@ jobs:
commit: '${{ env.prsha || env.GITHUB_SHA }}'
comment_mode: ${{ github.event_name == 'issue_comment' && 'always' || 'off' }}
files: '**/pytest*.xml'
large_files: true
large_files: true
11 changes: 0 additions & 11 deletions sdks/python/test-suites/tox/py310/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ project.tasks.register("postCommitPyDep") {}
// For versions that we would like to prioritize for testing,
// for example versions released in a timeframe of last 1-2 years.

toxTask "testPy310pyarrow-3", "py310-pyarrow-3", "${posargs}"
test.dependsOn "testPy310pyarrow-3"
postCommitPyDep.dependsOn "testPy310pyarrow-3"

toxTask "testPy310pyarrow-9", "py310-pyarrow-9", "${posargs}"
test.dependsOn "testPy310pyarrow-9"
postCommitPyDep.dependsOn "testPy310pyarrow-9"
Expand Down Expand Up @@ -121,13 +117,6 @@ postCommitPyDep.dependsOn "testPy310pandas-20"
// TODO(https://github.com/apache/beam/issues/30908): Revise what are we testing

// Create a test task for each minor version of pytorch
toxTask "testPy310pytorch-19", "py310-pytorch-19", "${posargs}"
test.dependsOn "testPy310pytorch-19"
postCommitPyDep.dependsOn "testPy310pytorch-19"

toxTask "testPy310pytorch-110", "py310-pytorch-110", "${posargs}"
test.dependsOn "testPy310pytorch-110"
postCommitPyDep.dependsOn "testPy310pytorch-110"

toxTask "testPy310pytorch-111", "py310-pytorch-111", "${posargs}"
test.dependsOn "testPy310pytorch-111"
Expand Down
Loading