From 6d576b415b3539528eac11301f412ea00b1f3003 Mon Sep 17 00:00:00 2001 From: Jonathan Daniel <36337649+jond01@users.noreply.github.com> Date: Wed, 7 Feb 2024 08:32:36 +0200 Subject: [PATCH] [Tests] Use a unique name for the monitoring app sys test [1.6.x] Backport #5067 to 1.6.x. --- tests/system/model_monitoring/test_app.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/system/model_monitoring/test_app.py b/tests/system/model_monitoring/test_app.py index 0ba12569d98d..eb70eb2bb753 100644 --- a/tests/system/model_monitoring/test_app.py +++ b/tests/system/model_monitoring/test_app.py @@ -19,7 +19,7 @@ import uuid from concurrent.futures import ThreadPoolExecutor from dataclasses import dataclass, field -from datetime import timedelta +from datetime import datetime, timedelta from pathlib import Path import numpy as np @@ -126,7 +126,10 @@ def _test_v3io_records(cls, ep_id: str) -> None: @TestMLRunSystem.skip_test_if_env_not_configured @pytest.mark.enterprise class TestMonitoringAppFlow(TestMLRunSystem, _V3IORecordsChecker): - project_name = "test-monitoring-app-flow" + project_name = "test-app-flow" + project_name += datetime.now().strftime( # remove when ML-5588 is fixed + "%y%m%d%H%M" + ) # Set image to "/mlrun:" for local testing image: typing.Optional[str] = None