Skip to content

Commit b6a92f5

Browse files
committed
Merge branch 'enterprise' of gitlab.com:dkinternal/testgen/dataops-testgen into tg-965-email-notifications
2 parents c543bc1 + 20453cb commit b6a92f5

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "dataops-testgen"
11-
version = "4.32.5"
11+
version = "4.38.7"
1212
description = "DataKitchen's Data Quality DataOps TestGen"
1313
authors = [
1414
{ "name" = "DataKitchen, Inc.", "email" = "info@datakitchen.io" },

testgen/scheduler/cli_scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def sig_handler(signum, _):
111111
for job in self._running_jobs:
112112
job.send_signal(signum)
113113
else:
114-
LOG.info("Received signal %s for the fist time, starting the shutdown process.", sig.name)
114+
LOG.info("Received signal %s for the first time, starting the shutdown process.", sig.name)
115115
interrupted.set()
116116

117117
signal.signal(signal.SIGINT, sig_handler)

testgen/template/dbsetup_test_types/test_types_Schema_Drift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ test_types:
2929
result_visualization_params: '{"legend":{"labels":{"0":"No Changes","1":"Changes"}}}'
3030
usage_notes: |-
3131
This test compares the current table column types with previous data, to check whether the table schema has changed. This test allows you to track any changes to the table structure.
32-
active: Y
32+
active: N
3333
cat_test_conditions: []
3434
target_data_lookups: []
3535
test_templates:

testgen/ui/views/test_definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ def prompt_for_test_type():
961961
include_column=col3.checkbox(":green[≣] Column", True),
962962
include_custom=col4.checkbox(":green[⛭] Custom", True),
963963
# always exclude tablegroup scopes from showing
964-
include_all = not any(include_referential, include_table, include_column, include_custom)
964+
include_all = not any([include_referential, include_table, include_column, include_custom])
965965

966966
df = run_test_type_lookup_query(
967967
include_referential=include_referential or include_all,

0 commit comments

Comments
 (0)