mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
17 lines
391 B
Python
17 lines
391 B
Python
import json
|
|
|
|
|
|
class TestInfo:
|
|
def __init__(self):
|
|
self.get_default_config()
|
|
|
|
def get_default_config(self):
|
|
""" Make sure the path exists """
|
|
self.home_dir = "/tmp/"
|
|
self.log_dir = self.home_dir + "log/"
|
|
self.log_info = "%s/refactor_test.log" % self.log_dir
|
|
self.log_err = "%s/refactor_test.err" % self.log_dir
|
|
|
|
|
|
test_info = TestInfo()
|