Skip to content

Commit 088aa09

Browse files
authored
#80 remove travis env variable (#82)
Fixes #80
1 parent ed1c834 commit 088aa09

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

doc/changes/changes_0.5.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ t.b.d.
99
## Features / Enhancements
1010

1111
- #78: Run tests with Python3
12+
- #80: Remove "TRAVIS" environment parameter from run_db_test
1213

1314
## Bug Fixes
1415

exasol_script_languages_container_tool/cli/commands/run_db_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
help="The main memory used by the database. Format <number> <unit>, e.g. 1 GiB. The minimum size is 1 GB, below that the database will not start.")
5454
@click.option('--db-disk-size', type=str, default="2 GiB", show_default=True,
5555
help="The disk size available for the database. Format <number> <unit>, e.g. 1 GiB. The minimum size is 100 MiB. However, the setup creates volume files with at least 2 GB larger size, because the database needs at least so much more disk.")
56-
@click.option('--test-environment-vars', type=str, default="""{"TRAVIS": ""}""",
56+
@click.option('--test-environment-vars', type=str, default="""{}""",
5757
show_default=True,
5858
help="""Specifies the environment variables for the test runner as a json
5959
in the form of {"<variable_name>":<value>}.""")

exasol_script_languages_container_tool/lib/tasks/test/run_db_tests_parameter.py

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

66
class GeneralRunDBTestParameter:
77
test_restrictions = luigi.ListParameter([])
8-
test_environment_vars = luigi.DictParameter({"TRAVIS": ""}, significant=False)
8+
test_environment_vars = luigi.DictParameter({}, significant=False)
99
test_log_level = luigi.Parameter("critical", significant=False)
1010

1111

0 commit comments

Comments
 (0)