Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fixfail_text to depend oncheck_fail_count rather thancheck_warn_count#2479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
csar398 wants to merge1 commit intosodadata:main
base:main
Choose a base branch
Loading
fromcsar398:bugfix/fail_text_depends_on_warn_count
Open
Changes fromall 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
Fixfail_text to depend oncheck_fail_count rather than `check_wa…
…rn_count`Fixes#2478
  • Loading branch information
Camilo Sarmiento committedNov 14, 2025
commitd9376dee6d58bf4e2fdb1d75e6a9f545be14e4f6
2 changes: 1 addition & 1 deletionsoda/core/soda/scan.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -567,7 +567,7 @@ def execute(self) -> int:
checks_warn_count = self.__log_checks(CheckOutcome.WARN)
warn_text = "warning" if checks_warn_count == 1 else "warnings"
checks_fail_count = self.__log_checks(CheckOutcome.FAIL)
fail_text = "failure" ifchecks_warn_count == 1 else "failures"
fail_text = "failure" ifchecks_fail_count == 1 else "failures"
error_count = len(self.get_error_logs())
error_text = "error" if error_count == 1 else "errors"
self.__log_checks(None)
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp