Skip to content

Commit

Permalink
fix(reana_dev): lint cluster.py code (#811)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlemesh committed Jul 26, 2024
1 parent c6b002f commit 8900f0f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions reana/reana_dev/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,12 @@ def cluster_commands():
@click.option(

Check warning on line 78 in reana/reana_dev/cluster.py

View check run for this annotation

Codecov / codecov/patch

reana/reana_dev/cluster.py#L78

Added line #L78 was not covered by tests
"--kind-version",
default=KIND_IMAGE_VERSION,
help=f"Which kindest/node image version to use? [default={KIND_IMAGE_VERSION}]")
help=f"Which kindest/node image version to use? [default={KIND_IMAGE_VERSION}]",
)
@cluster_commands.command(name="cluster-create")
def cluster_create(mounts, mode, worker_nodes, disable_default_cni, kind_version): # noqa: D301
def cluster_create(

Check warning on line 84 in reana/reana_dev/cluster.py

View check run for this annotation

Codecov / codecov/patch

reana/reana_dev/cluster.py#L84

Added line #L84 was not covered by tests
mounts, mode, worker_nodes, disable_default_cni, kind_version
): # noqa: D301
"""Create new REANA cluster.
\b
Expand Down

0 comments on commit 8900f0f

Please sign in to comment.