Skip to content

Commit 6c2db04

Browse files
authored
Fix MLFlow test (#2161)
1 parent dd52385 commit 6c2db04

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
run: pip install docker-compose
189189

190190
- name: Install Linux System Dependencies
191-
if: runner.os=='Linux'
191+
if: inputs.os=='ubuntu-latest'
192192
run: sudo apt install graphviz
193193

194194
- name: Install MacOS System Dependencies
@@ -219,7 +219,7 @@ jobs:
219219
run: |
220220
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
221221
sudo install -o root -g 0 -m 0755 kubectl /usr/local/bin/kubectl
222-
if: runner.os=='Linux'
222+
if: inputs.os=='ubuntu-latest'
223223

224224
- name: Install kubectl on MacOS
225225
run: |

tests/integration/examples/mlflow/pipelines/deployment_pipelines/deployment_inference_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
docker_settings = DockerSettings(required_integrations=[MLFLOW, TENSORFLOW])
2424

2525

26-
@pipeline(enable_cache=True, settings={"docker": docker_settings})
26+
@pipeline(enable_cache=False, settings={"docker": docker_settings})
2727
def mlflow_deployment_inference_pipeline(
2828
pipeline_name: str = "mlflow_train_deploy_pipeline",
2929
pipeline_step_name: str = "mlflow_model_deployer_step",

tests/integration/examples/mlflow/pipelines/deployment_pipelines/deployment_training_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
docker_settings = DockerSettings(required_integrations=[MLFLOW, TENSORFLOW])
2626

2727

28-
@pipeline(enable_cache=True, settings={"docker": docker_settings})
28+
@pipeline(enable_cache=False, settings={"docker": docker_settings})
2929
def mlflow_train_deploy_pipeline(
3030
epochs: int = 1,
3131
lr: float = 0.001,

0 commit comments

Comments
 (0)