Skip to content

Commit 507935c

Browse files
authored
#289: Removed obsolete params generic-language-test and test-language (#317)
closes #289
1 parent 6343bd1 commit 507935c

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

doc/changes/changes_3.4.1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
## Refactoring
44

55
- #309: Relaxed exasol-bucketfs from "^2.0.0" to ">=1,<3"
6+
- #289: Removed an obsolete param test-language of run-db-test

exasol/slc/api/run_db_tests.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def run_db_test(
5050
generic_language_test: tuple[str, ...] = tuple(),
5151
test_folder: tuple[str, ...] = tuple(),
5252
test_file: tuple[str, ...] = tuple(),
53-
test_language: tuple[Optional[str], ...] = (None,),
5453
test: tuple[str, ...] = tuple(),
5554
environment_type: str = "docker_db",
5655
max_start_attempts: int = 2,
@@ -172,7 +171,6 @@ def root_task_generator() -> DependencyLoggerBaseTask:
172171
test_folders=list(test_folder),
173172
test_files=list(test_file),
174173
test_restrictions=list(test),
175-
languages=list(test_language),
176174
mem_size=db_mem_size,
177175
disk_size=db_disk_size,
178176
test_environment_vars=json.loads(test_environment_vars),

exasol/slc/tool/commands/run_db_tests.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,6 @@
6565
"The option can be repeated with different test files. "
6666
"The test runner will run all specified test files.",
6767
)
68-
@click.option(
69-
"--test-language",
70-
multiple=True,
71-
type=str,
72-
default=[None],
73-
help="Specifies with which language the test files get executed."
74-
"The option can be repeated with different languages. "
75-
"The test runner will run the test files with all specified languages.",
76-
)
7768
@click.option(
7869
"--test",
7970
multiple=True,
@@ -167,7 +158,6 @@ def run_db_test(
167158
generic_language_test: tuple[str, ...],
168159
test_folder: tuple[str, ...],
169160
test_file: tuple[str, ...],
170-
test_language: tuple[Optional[str], ...],
171161
test: tuple[str, ...],
172162
environment_type: str,
173163
max_start_attempts: int,
@@ -238,7 +228,6 @@ def run_db_test(
238228
generic_language_test=generic_language_test,
239229
test_folder=test_folder,
240230
test_file=test_file,
241-
test_language=test_language,
242231
test=test,
243232
environment_type=environment_type,
244233
max_start_attempts=max_start_attempts,

0 commit comments

Comments
 (0)