-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into flyte-propeller-manager-re…
…sources Signed-off-by: Eduardo Apolinario <[email protected]>
- Loading branch information
Showing
160 changed files
with
7,567 additions
and
5,169 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 |
---|---|---|
|
@@ -159,6 +159,8 @@ jobs: | |
with: | ||
python-version: "3.12" | ||
- uses: unionai/[email protected] | ||
with: | ||
version: '0.9.2' | ||
- name: Setup sandbox | ||
run: | | ||
mkdir -p ~/.flyte/sandbox | ||
|
@@ -197,6 +199,9 @@ jobs: | |
--version ${{ env.FLYTESNACKS_VERSION }} \ | ||
flytesnacks/$line; | ||
done < flytesnacks/flyte_tests.txt | ||
- name: Install Pytest | ||
run: | | ||
pip install pytest | ||
- name: End2End | ||
run: | | ||
make end2end_execute | ||
|
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 |
---|---|---|
|
@@ -38,3 +38,4 @@ docs/examples | |
docs/_src | ||
docs/_projects | ||
docs/tests | ||
empty-config.yaml |
Large diffs are not rendered by default.
Oops, something went wrong.
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,19 @@ | ||
# Flyte 1.14.1 Release Notes | ||
|
||
* Update flytestdlib and affected tools (copilot) for missing config. | ||
|
||
## What's Changed | ||
* docs: Refactor merge sort code example to use literalinclude by @davidlin20dev in https://github.com/flyteorg/flyte/pull/6091 | ||
* [DOCS] Using ImageSpec in ContainerTask by @machichima in https://github.com/flyteorg/flyte/pull/6095 | ||
* Eager doc updates by @wild-endeavor in https://github.com/flyteorg/flyte/pull/6099 | ||
* Revert "fix: return the config file not found error" by @eapolinario in https://github.com/flyteorg/flyte/pull/6100 | ||
* Remove notes on deprecated Batch size by @wild-endeavor in https://github.com/flyteorg/flyte/pull/6102 | ||
* Upstream: Add labels to published execution events by @katrogan in https://github.com/flyteorg/flyte/pull/6104 | ||
* Fix: Make distributed error aggregation opt-in by @fg91 in https://github.com/flyteorg/flyte/pull/6103 | ||
* Add default labels and annotations to Ray worker pods too. by @katrogan in https://github.com/flyteorg/flyte/pull/6107 | ||
* Fix: Remove the default search dialog if it exists (on CMD + K) by @chmod77 in https://github.com/flyteorg/flyte/pull/6106 | ||
|
||
## New Contributors | ||
* @chmod77 made their first contribution in https://github.com/flyteorg/flyte/pull/6106 | ||
|
||
**Full Changelog**: https://github.com/flyteorg/flyte/compare/v1.14.0...v1.14.1 |
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,47 @@ | ||
import pytest | ||
|
||
def pytest_addoption(parser): | ||
parser.addoption("--flytesnacks_release_tag", required=True) | ||
parser.addoption("--priorities", required=True) | ||
parser.addoption("--config_file", required=True) | ||
parser.addoption( | ||
"--return_non_zero_on_failure", | ||
action="store_true", | ||
default=False, | ||
help="Return a non-zero exit status if any workflow fails", | ||
) | ||
parser.addoption( | ||
"--terminate_workflow_on_failure", | ||
action="store_true", | ||
default=False, | ||
help="Abort failing workflows upon exit", | ||
) | ||
parser.addoption( | ||
"--test_project_name", | ||
default="flytesnacks", | ||
help="Name of project to run functional tests on" | ||
) | ||
parser.addoption( | ||
"--test_project_domain", | ||
default="development", | ||
help="Name of domain in project to run functional tests on" | ||
) | ||
parser.addoption( | ||
"--cluster_pool_name", | ||
required=False, | ||
type=str, | ||
default=None, | ||
) | ||
|
||
@pytest.fixture | ||
def setup_flytesnacks_env(pytestconfig): | ||
return { | ||
"flytesnacks_release_tag": pytestconfig.getoption("--flytesnacks_release_tag"), | ||
"priorities": pytestconfig.getoption("--priorities"), | ||
"config_file": pytestconfig.getoption("--config_file"), | ||
"return_non_zero_on_failure": pytestconfig.getoption("--return_non_zero_on_failure"), | ||
"terminate_workflow_on_failure": pytestconfig.getoption("--terminate_workflow_on_failure"), | ||
"test_project_name": pytestconfig.getoption("--test_project_name"), | ||
"test_project_domain": pytestconfig.getoption("--test_project_domain"), | ||
"cluster_pool_name": pytestconfig.getoption("--cluster_pool_name"), | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.