mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Fix
This commit is contained in:
parent
6486c4421e
commit
d9053b8a7c
@ -29,7 +29,9 @@ from helpers.s3_tools import prepare_s3_bucket, upload_directory, get_file_conte
|
||||
|
||||
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
|
||||
TABLE_NAME = "test_delta_table"
|
||||
USER_FILES_PATH = "/ClickHouse/tests/integration/test_storage_delta/_instances/node1/database/user_files"
|
||||
USER_FILES_PATH = os.path.join(
|
||||
SCRIPT_DIR, "./_instances/node1/database/user_files"
|
||||
)
|
||||
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
|
@ -12,8 +12,9 @@ import pyspark
|
||||
|
||||
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
|
||||
TABLE_NAME = "test_hudi_table"
|
||||
USER_FILES_PATH = "/ClickHouse/tests/integration/test_storage_hudi/_instances/node1/database/user_files"
|
||||
|
||||
USER_FILES_PATH = os.path.join(
|
||||
SCRIPT_DIR, "./_instances/node1/database/user_files"
|
||||
)
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def started_cluster():
|
||||
|
@ -13,7 +13,9 @@ from helpers.s3_tools import prepare_s3_bucket, upload_directory, get_file_conte
|
||||
|
||||
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
|
||||
TABLE_NAME = "test_iceberg_table"
|
||||
USER_FILES_PATH = "/ClickHouse/tests/integration/test_storage_iceberg/_instances/node1/database/user_files"
|
||||
USER_FILES_PATH = os.path.join(
|
||||
SCRIPT_DIR, "./_instances/node1/database/user_files"
|
||||
)
|
||||
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
|
Loading…
Reference in New Issue
Block a user