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 0943e38 commit 9a73735Copy full SHA for 9a73735
_delphi_utils_python/delphi_utils/validator/run.py
@@ -17,10 +17,11 @@ def run_module():
17
args = parser.parse_args()
18
params = read_params()
19
validator = Validator(params)
20
+ dry_run_param = params["validation"]["common"].get("dry_run", False)
21
validator.validate().print_and_exit(
22
get_structured_logger(__name__,
23
params["common"].get("log_filename", None)),
- not args.dry_run)
24
+ not (args.dry_run or dry_run_param))
25
26
27
def validator_from_params(params):
0 commit comments