Skip to content

Commit

Permalink
Endpoint to deployment renaming (#28)
Browse files Browse the repository at this point in the history
* tiny rename

* zenml version

* no cache in tests
  • Loading branch information
avishniakov authored Dec 18, 2023
1 parent 30a4146 commit 153a51b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ jobs:
with:
stack-name: ${{ matrix.stack-name }}
python-version: ${{ matrix.python-version }}
ref-zenml: ${{ inputs.ref-zenml || 'feature/OSS-2574-add-metadata-to-model-versions' }}
ref-zenml: ${{ inputs.ref-zenml || 'feature/OSS-2609-endpoint_artifacts_rename_new' }}
ref-template: ${{ inputs.ref-template || github.ref }}
2 changes: 1 addition & 1 deletion template/steps/deployment/deployment_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def deployment_deploy() -> (
Annotated[
Optional[MLFlowDeploymentService],
ArtifactConfig(name="mlflow_deployment", is_endpoint_artifact=True),
ArtifactConfig(name="mlflow_deployment", is_deployment_artifact=True),
]
):
"""Predictions step.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def generate_and_run_project(
# MLFlow `service daemon is not running` error on MacOS
if platform.system().lower() not in ["windows"]:
# run the project
call = [sys.executable, "run.py"]
call = [sys.executable, "run.py", "--no-cache"]

try:
subprocess.check_output(
Expand Down

0 comments on commit 153a51b

Please sign in to comment.