Skip to content

Commit

Permalink
Update compliance.py
Browse files Browse the repository at this point in the history
Changing output file paths in def_diff

Update compliance.py

Update compliance.py

Update compliance.py

Update compliance.py

Update compliance.py

Removing whitespace to adhere to linter rules

Update compliance.py

Update compliance.py

Update compliance.py

Update compliance.py
  • Loading branch information
heldkat committed Jan 24, 2025
1 parent 4cbb490 commit ca6173c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/gardener_ci/compliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ class DiffArguments:
right_name: str
left_version: str
right_version: str
outfile_prefix: str
ocm_repo_urls: list[str]
exclude_component_names: list[str] = None
exclude_component_resource_names: list[ComponentResourceNames] = None
resource_types: list[str] = None
name_template: str = None
name_template_expr: str = None
outfile_prefix: str = 'resource-diff'


def diff(
Expand Down Expand Up @@ -91,6 +91,8 @@ def diff(
params['name_template_expr'] = name_template
if resource_types:
params['resource_types'] = resource_types
if outfile_prefix:
params['outfile_prefix'] = outfile_prefix

try:
parsed = dacite.from_dict(
Expand Down

0 comments on commit ca6173c

Please sign in to comment.