Skip to content

Commit c54faf4

Browse files
committed
Add test prefix for projects created in helm test
1 parent 392fad1 commit c54faf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infra/charts/feast/templates/tests/test-feast-batch-serving.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ spec:
4545
pd.set_option("display.max_columns", 10)
4646
4747
client = Client(core_url=os.getenv("FEAST_CORE_ADDR"), serving_url=os.getenv("FEAST_SERVING_ADDR"))
48-
project = f"project_{int(time.time() / 3600)}"
48+
project = f"testproject_{int(time.time() / 3600)}"
4949
if project not in client.list_projects():
5050
client.create_project(project)
5151
client.set_project(project)

infra/charts/feast/templates/tests/test-feast-online-serving.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ spec:
4545
pd.set_option("display.max_columns", 10)
4646
4747
client = Client(core_url=os.getenv("FEAST_CORE_ADDR"), serving_url=os.getenv("FEAST_SERVING_ADDR"))
48-
project = f"project_{int(time.time() / 3600)}"
48+
project = f"testproject_{int(time.time() / 3600)}"
4949
if project not in client.list_projects():
5050
client.create_project(project)
5151
client.set_project(project)

0 commit comments

Comments
 (0)