Add python into integration tests image

This commit is contained in:
alesapin 2019-02-24 13:28:47 +03:00
parent e22a6cd6ec
commit 22a54bbd77
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ def setup_module(module):
main_configs.append(os.path.join(dict_configs_path, fname))
cluster = ClickHouseCluster(__file__, base_configs_dir=os.path.join(SCRIPT_DIR, 'configs'))
node = cluster.add_instance('node', main_configs=main_configs, with_mysql=True)
cluster.add_instance('clickhouse1', image="python")
cluster.add_instance('clickhouse1')
@pytest.fixture(scope="module")
def started_cluster():

View File

@ -1,6 +1,6 @@
FROM ubuntu:18.04
RUN apt-get update && apt-get -y install tzdata
RUN apt-get update && apt-get -y install tzdata python
ENV TZ=Europe/Moscow
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone