-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Kubeflow Pipelines V2 integration Tests (#11125)
Signed-off-by: Diego Lovison <[email protected]>
- Loading branch information
1 parent
91cd1f4
commit 37441af
Showing
4 changed files
with
40 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Kubeflow Pipelines V2 integration Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- '.github/workflows/kubeflow-pipelines-integration-v2.yml' | ||
- 'samples' | ||
- 'core' | ||
- 'backend' | ||
|
||
jobs: | ||
integration-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.8] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
|
||
- name: Create KFP cluster | ||
uses: ./.github/actions/kfp-cluster | ||
|
||
- name: Forward API port | ||
run: ./scripts/deploy/github/forward-port.sh "kubeflow" "ml-pipeline" 8888 8888 | ||
|
||
- name: Run the Integration Tests | ||
run: | | ||
./backend/src/v2/test/integration-test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
# install kfp sdk from local path | ||
-e ../../../../sdk/python | ||
# TODO(chensun): remove the deprecated dependencies once migrated tests. | ||
-r ../../../../sdk/python/requirements-deprecated.txt | ||
ml-metadata==1.14.0 | ||
minio==7.0.4 | ||
google-cloud-storage | ||
fire | ||
-e ../../../../samples/test/utils |
This file was deleted.
Oops, something went wrong.