Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dataops-testgen"
version = "4.38.6"
version = "4.38.7"
description = "DataKitchen's Data Quality DataOps TestGen"
authors = [
{ "name" = "DataKitchen, Inc.", "email" = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion testgen/scheduler/cli_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def sig_handler(signum, _):
for job in self._running_jobs:
job.send_signal(signum)
else:
LOG.info("Received signal %s for the fist time, starting the shutdown process.", sig.name)
LOG.info("Received signal %s for the first time, starting the shutdown process.", sig.name)
interrupted.set()

signal.signal(signal.SIGINT, sig_handler)
Expand Down
2 changes: 1 addition & 1 deletion testgen/ui/views/test_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ def prompt_for_test_type():
include_column=col3.checkbox(":green[≣] Column", True),
include_custom=col4.checkbox(":green[⛭] Custom", True),
# always exclude tablegroup scopes from showing
include_all = not any(include_referential, include_table, include_column, include_custom)
include_all = not any([include_referential, include_table, include_column, include_custom])

df = run_test_type_lookup_query(
include_referential=include_referential or include_all,
Expand Down