Skip to content

Commit 5142e5e

Browse files
committed
Fix test faliures
1 parent de655f7 commit 5142e5e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/feature_store/test_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import unittest
88
from datetime import datetime
9+
from random import random
910

1011
import oci
1112
import pandas as pd
@@ -36,7 +37,7 @@
3637

3738
class FeatureStoreTestCase:
3839
# networks compartment in feature store
39-
TIME_NOW = datetime.utcnow().strftime("%Y_%m_%d_%H_%M_%S")
40+
TIME_NOW = str.format("{}_{}",datetime.utcnow().strftime("%Y_%m_%d_%H_%M_%S"),int(random()*1000))
4041
TENANCY_ID = "ocid1.tenancy.oc1..aaaaaaaa462hfhplpx652b32ix62xrdijppq2c7okwcqjlgrbknhgtj2kofa"
4142
COMPARTMENT_ID = "ocid1.tenancy.oc1..aaaaaaaa462hfhplpx652b32ix62xrdijppq2c7okwcqjlgrbknhgtj2kofa"
4243
METASTORE_ID = "ocid1.datacatalogmetastore.oc1.iad.amaaaaaabiudgxyap7tizm4gscwz7amu7dixz7ml3mtesqzzwwg3urvvdgua"

0 commit comments

Comments
 (0)