Skip to content

Commit

Permalink
fix zk path error
Browse files Browse the repository at this point in the history
  • Loading branch information
gfunc committed Aug 24, 2023
1 parent 193668a commit 33a31b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/integration/adapter/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
seeds:
- name: empty
config:
engine: ReplicatedMergeTree('/clickhouse/tables/replicated_seeds_schema/one_shard', '{server_index}' )
engine: ReplicatedMergeTree('/clickhouse/tables/{uuid}/one_shard', '{server_index}' )
column_types:
val2: Nullable(UInt32)
str1: Nullable(String)
Expand Down Expand Up @@ -167,6 +167,9 @@ def seeds(self):
"empty.csv": seeds_empty_csv,
}

@pytest.mark.skipif(
os.environ.get('DBT_CH_TEST_CLUSTER', '').strip() == '', reason='Not on a cluster'
)
def test_seed(self, project):
# seed command
results = run_dbt(["seed"])
Expand Down Expand Up @@ -199,7 +202,6 @@ def seeds(self):
"base.csv": seeds_base_csv,
}


def assert_total_count_correct(self, project):
cluster = project.test_config['cluster']
# check if data is properly distributed/replicated
Expand Down

0 comments on commit 33a31b2

Please sign in to comment.