-
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.
Kubeflow Pipelines V2 integration Testes
Signed-off-by: Diego Lovison <diegolovison@gmail.com>
- Loading branch information
1 parent
1a07ffa
commit a2fd08c
Showing
3 changed files
with
34 additions
and
9 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,32 @@ | ||
name: Kubeflow Pipelines V2 integration Testes | ||
|
||
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: 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,2 @@ | ||
# 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 | ||
-e ../../../../sdk/python |