Skip to content

Commit

Permalink
cli: do not install eggs for non python components
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Rodriguez committed Jun 10, 2020
1 parent 901b2dd commit 0d5a31d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions reana/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1869,12 +1869,12 @@ def kubectl_delete_pod(component): # noqa: D301
@cli.command(name="python-install-eggs")
def python_install_eggs():
"""Create eggs-info/ in all REANA infrastructure and runtime components."""
python_cluster_components = [c for c in REPO_LIST_CLUSTER if c != "reana-ui"]
for component in python_cluster_components:
for cmd in [
"python setup.py bdist_egg",
]:
run_command(cmd, component)
for component in REPO_LIST_CLUSTER:
if is_component_python_package(component):
for cmd in [
"python setup.py bdist_egg",
]:
run_command(cmd, component)


@cli.command(name="python-unit-tests")
Expand Down

0 comments on commit 0d5a31d

Please sign in to comment.