We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1396cf2 commit 239cd1cCopy full SHA for 239cd1c
_delphi_utils_python/delphi_utils/validator/run.py
@@ -16,8 +16,10 @@ def run_module():
16
" status irrespective of the number of failures")
17
args = parser.parse_args()
18
params = read_params()
19
- validator = Validator(params)
+ assert "validation" in params
20
dry_run_param = params["validation"]["common"].get("dry_run", False)
21
+ params["validation"]["common"]["dry_run"] = args.dry_run or dry_run_param
22
+ validator = Validator(params)
23
validator.validate().print_and_exit(
24
get_structured_logger(__name__,
25
params["common"].get("log_filename", None)),
0 commit comments