Skip to content

Commit

Permalink
[Tests] Use a unique name for the monitoring app sys test [1.6.x]
Browse files Browse the repository at this point in the history
Backport mlrun#5067 to 1.6.x.
  • Loading branch information
jond01 committed Feb 7, 2024
1 parent e9ebb41 commit 6d576b4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/system/model_monitoring/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 "<repo>/mlrun:<tag>" for local testing
image: typing.Optional[str] = None

Expand Down

0 comments on commit 6d576b4

Please sign in to comment.