Skip to content

Commit 8a2f961

Browse files
authored
Merge cd22560 into 26c9911
2 parents 26c9911 + cd22560 commit 8a2f961

File tree

25 files changed

+473
-115
lines changed

25 files changed

+473
-115
lines changed

ydb/tests/fq/generic/conftest.py renamed to ydb/tests/fq/generic/analytics/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
@pytest.fixture
1616
def settings() -> Settings:
17-
return Settings.from_env()
17+
return Settings.from_env(docker_compose_file_path='ydb/tests/fq/generic/analytics/docker-compose.yml')
1818

1919

2020
@pytest.fixture

ydb/tests/fq/generic/docker-compose.yml renamed to ydb/tests/fq/generic/analytics/docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
clickhouse:
3-
container_name: tests-fq-generic-clickhouse
3+
container_name: tests-fq-generic-analytics-clickhouse
44
environment:
55
CLICKHOUSE_DB: db
66
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1
@@ -16,14 +16,14 @@ services:
1616
fq-connector-go:
1717
command: |
1818
sh -c "
19-
echo \"$$(dig tests-fq-generic-ydb +short) tests-fq-generic-ydb\" >> /etc/hosts; cat /etc/hosts;
19+
echo \"$$(dig tests-fq-generic-analytics-ydb +short) tests-fq-generic-analytics-ydb\" >> /etc/hosts; cat /etc/hosts;
2020
/opt/ydb/bin/fq-connector-go server -c /opt/ydb/cfg/fq-connector-go.yaml"
21-
container_name: tests-fq-generic-fq-connector-go
21+
container_name: tests-fq-generic-analytics-fq-connector-go
2222
image: ghcr.io/ydb-platform/fq-connector-go:v0.5.8-rc.2@sha256:12d15f2e82608bc4e64fa91c549361c587754aeb0e6c6a2cee749caebb11baf8
2323
ports:
2424
- "2130"
2525
greenplum:
26-
container_name: tests-fq-generic-greenplum
26+
container_name: tests-fq-generic-analytics-greenplum
2727
image: ghcr.io/ydb-platform/fq-connector-go_greenplum:6.25.3-6432@sha256:9e862b05719b289b447562fbce6c003916a764a549f924a4175eecd7e7891a0b
2828
volumes:
2929
- ./greenplum/init_db.sh:/init_db.sh
@@ -33,7 +33,7 @@ services:
3333
- /var
3434
postgresql:
3535
command: -p 6432
36-
container_name: tests-fq-generic-postgresql
36+
container_name: tests-fq-generic-analytics-postgresql
3737
environment:
3838
POSTGRES_DB: db
3939
POSTGRES_PASSWORD: password
@@ -46,13 +46,13 @@ services:
4646
- /tmp
4747
- /var
4848
ydb:
49-
container_name: tests-fq-generic-ydb
49+
container_name: tests-fq-generic-analytics-ydb
5050
environment:
5151
POSTGRES_PASSWORD: password
5252
POSTGRES_USER: user
5353
YDB_DEFAULT_LOG_LEVEL: DEBUG
5454
DB_USE_IN_MEMORY_PDISKS: "true"
55-
hostname: tests-fq-generic-ydb
55+
hostname: tests-fq-generic-analytics-ydb
5656
image: ghcr.io/ydb-platform/local-ydb:latest@sha256:9045e00afec1923dc3277564c7b2f829087c2115f45f18e1d38b80bb89f98be6
5757
volumes:
5858
- ./ydb/init_ydb:/init_ydb
File renamed without changes.

0 commit comments

Comments
 (0)