Skip to content

Commit a3f3c9c

Browse files
update
1 parent 3791a6d commit a3f3c9c

5 files changed

Lines changed: 5 additions & 143 deletions

File tree

.github/workflows/beam_PostCommit_Python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
job_name: [beam_PostCommit_Python]
6363
job_phrase: [Run Python PostCommit]
6464
python_version: ['3.9', '3.10', '3.11', '3.12']
65-
os: [[self-hosted, ubuntu-20.04, highmem22], ubuntu-latest]
65+
os: [[self-hosted, ubuntu-20.04, highmem22], [ubuntu-latest]]
6666
if: |
6767
github.event_name == 'workflow_dispatch' ||
6868
github.event_name == 'pull_request_target' ||
@@ -102,7 +102,7 @@ jobs:
102102
-PuseWheelDistribution \
103103
# Conditionally add -Pposargs based on the runner type.
104104
-Pposargs="${{
105-
matrix.os == 'self-hosted' &&
105+
contains(matrix.os, 'self-hosted') &&
106106
'-m ''not require_non_self_hosted''' ||
107107
'-m ''require_non_self_hosted'''
108108
}}" \

.github/workflows/beam_PreCommit_Python_ML.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
job_name: ['beam_PreCommit_Python_ML']
6767
job_phrase: ['Run Python_ML PreCommit']
6868
python_version: ['3.9','3.10','3.11','3.12']
69-
os: [[self-hosted, ubuntu-20.04, main], ubuntu-latest]
69+
os: [[self-hosted, ubuntu-20.04, main], [ubuntu-latest]]
7070
if: |
7171
github.event_name == 'push' ||
7272
github.event_name == 'pull_request_target' ||
@@ -99,7 +99,7 @@ jobs:
9999
arguments: |
100100
# Conditionally add -Pposargs based on the runner type.
101101
-Pposargs="${{
102-
matrix.os == 'self-hosted' &&
102+
contains(matrix.os, 'self-hosted') &&
103103
'-m ''not require_non_self_hosted''' ||
104104
'-m ''require_non_self_hosted'''
105105
}}" \

.github/workflows/experiment_with_workflow.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/milvus_integration_tests.yml

Lines changed: 0 additions & 108 deletions
This file was deleted.

sdks/python/tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,11 @@ commands_pre =
8585
pip --version
8686
# pip check
8787
bash {toxinidir}/scripts/run_tox_cleanup.sh
88-
extras = test
8988
commands =
9089
python apache_beam/examples/complete/autocomplete_test.py
9190
bash {toxinidir}/scripts/run_pytest.sh {envname} "{posargs}"
9291

9392
[testenv:py{39,310,311,312,313}-win]
94-
extras = test
9593
commands =
9694
python apache_beam/examples/complete/autocomplete_test.py
9795
bash {toxinidir}/scripts/run_pytest.sh {envname} "{posargs}"
@@ -111,7 +109,7 @@ deps =
111109
pip==25.0.1
112110
accelerate>=1.6.0
113111
setenv =
114-
extras = test,gcp,dataframe,ml_test
112+
extras = test,gcp,dataframe,milvus,ml_test
115113
commands =
116114
# Log tensorflow version for debugging
117115
/bin/sh -c "pip freeze | grep -E tensorflow"

0 commit comments

Comments
 (0)