Skip to content

Commit b43795a

Browse files
authored
#105: Update integration-test-docker-environment and prepare release (#106)
Fixes #105 Co-authored-by: [email protected]
1 parent a0b1a3c commit b43795a

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

doc/changes/changes_0.9.0.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
# Script-Languages-Container-Tool 0.9.0, released t.b.d.
1+
# Script-Languages-Container-Tool 0.9.0, released 2022-01-27
22

3-
Code name: t.b.d.
3+
Code name: Integration-Test-Docker-Environment 0.8.0
44

55
## Summary
66

7-
t.b.d.
7+
This release updates to integration-test-docker-environment 0.8.0. Also the CI build now runs shellcheck on all bash scripts.
88

99
## Features / Enhancements
1010

1111
- #31: Setup shellcheck for the starter scripts
12+
- #105: Update integration-test-docker-environment and prepare release
1213

1314
## Bug Fixes
1415

exasol_script_languages_container_tool/cli/commands/run_db_tests.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ def run_db_test(flavor_path: Tuple[str, ...],
123123
target_docker_username: str,
124124
target_docker_password: str,
125125
workers: int,
126-
task_dependencies_dot_file: str):
126+
task_dependencies_dot_file: str,
127+
create_certificates: bool):
127128
"""
128129
This command runs the integration tests in local docker-db.
129130
The systems spawns a test environment in which the test are executed.
@@ -193,7 +194,8 @@ def run_db_test(flavor_path: Tuple[str, ...],
193194
external_exasol_xmlrpc_port=external_exasol_xmlrpc_port,
194195
external_exasol_xmlrpc_user=external_exasol_xmlrpc_user,
195196
external_exasol_xmlrpc_password=external_exasol_xmlrpc_password,
196-
external_exasol_xmlrpc_cluster_name=external_exasol_xmlrpc_cluster_name
197+
external_exasol_xmlrpc_cluster_name=external_exasol_xmlrpc_cluster_name,
198+
create_certificates=create_certificates
197199
)
198200
)
199201
success, task = run_task(task_creator, workers, task_dependencies_dot_file)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ keywords = ['exasol', 'udf', 'script-languages']
1818

1919
[tool.poetry.dependencies]
2020
python = ">=3.6,<4"
21-
exasol-integration-test-docker-environment = {url = "https://github.com/exasol/integration-test-docker-environment/releases/download/0.7.0/exasol_integration_test_docker_environment-0.7.0-py3-none-any.whl"}
21+
exasol-integration-test-docker-environment = {url = "https://github.com/exasol/integration-test-docker-environment/releases/download/0.8.0/exasol_integration_test_docker_environment-0.8.0-py3-none-any.whl"}
2222

2323
[build-system]
2424
requires = ["poetry_core>=1.0.0"]

setup.py

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

2424
install_requires = \
2525
['exasol-integration-test-docker-environment @ '
26-
'https://github.com/exasol/integration-test-docker-environment/releases/download/0.7.0/exasol_integration_test_docker_environment-0.7.0-py3-none-any.whl']
26+
'https://github.com/exasol/integration-test-docker-environment/releases/download/0.8.0/exasol_integration_test_docker_environment-0.8.0-py3-none-any.whl']
2727

2828
setup_kwargs = {
2929
'name': 'exasol-script-languages-container-tool',

0 commit comments

Comments
 (0)