-
Notifications
You must be signed in to change notification settings - Fork 674
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add functional test scripts Signed-off-by: Eduardo Apolinario <[email protected]> * Add jq Signed-off-by: Eduardo Apolinario <[email protected]> * Use new flytekit Signed-off-by: Eduardo Apolinario <[email protected]> * Temporarily point to locahost Signed-off-by: Eduardo Apolinario <[email protected]> * Hardcode flytesnacks version Signed-off-by: Eduardo Apolinario <[email protected]> * Revert "Temporarily point to locahost" This reverts commit 24e0202f16a509838a3332dc37e8228a92700f83. Signed-off-by: Eduardo Apolinario <[email protected]> * Hardcode flytesnacks version Signed-off-by: Eduardo Apolinario <[email protected]> * Do not register in run.sh Signed-off-by: Eduardo Apolinario <[email protected]> * Run other tests Signed-off-by: Eduardo Apolinario <[email protected]> * Use flytesnacks v0.1.1 Signed-off-by: Eduardo Apolinario <[email protected]> * Remove hardcoded version of flytesnacks Signed-off-by: Eduardo Apolinario <[email protected]> * Register flytesnacks examples from inside the pod Signed-off-by: Eduardo Apolinario <[email protected]> * Use flytekit==0.30.0 Signed-off-by: Eduardo Apolinario <[email protected]> Co-authored-by: Eduardo Apolinario <[email protected]>
- Loading branch information
1 parent
841239f
commit e4b7017
Showing
6 changed files
with
31 additions
and
6 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
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
3 changes: 3 additions & 0 deletions
3
flytetools/flytetester/functional-tests/functional-test.config
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,3 @@ | ||
[platform] | ||
url=flyteadmin:81 | ||
insecure=True |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
LATEST_VERSION=$(curl --silent "https://api.github.com/repos/flyteorg/flytesnacks/releases/latest" | jq -r .tag_name) | ||
|
||
flytectl register examples -p flytesnacks -d development --config /opt/go/config.yaml | ||
|
||
flytekit_venv python functional-tests/run-tests.py $LATEST_VERSION P0,P1 functional-tests/functional-test.config core |
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,4 +1,4 @@ | ||
flytekit[sidecar,schema]==0.26.0 | ||
flytekit[sidecar,schema]==0.30.0 | ||
statsd | ||
opencv-python | ||
k8s-proto>=0.0.2 | ||
|