Skip to content

Commit

Permalink
Add tree command to both containers
Browse files Browse the repository at this point in the history
Fixes: #405
  • Loading branch information
ssbarnea committed Oct 8, 2024
1 parent 2a86f66 commit ac52900
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions devspaces/context/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dnf install -y -q \
"python${PYV}-pyyaml" \
"python${PYV}-wheel" \
tar \
tree \
util-linux-user \
which \
zsh \
Expand Down
1 change: 1 addition & 0 deletions final/context/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ python3-pip \
python3-pyyaml \
python3-ruamel-yaml \
python3-wheel \
tree \
--exclude container-selinux \
&& microdnf -q clean all \
&& ln -s /usr/bin/vim /usr/bin/vi
2 changes: 1 addition & 1 deletion tests/integration/test_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_container_in_container(


@pytest.mark.container()
@pytest.mark.parametrize("app", ("nano", "tar", "vi"))
@pytest.mark.parametrize("app", ("nano", "tar", "tree", "vi"))
def test_app(exec_container: Callable[[str], subprocess.CompletedProcess[str]], app: str) -> None:
"""Test the presence of an app in the container.
Expand Down

0 comments on commit ac52900

Please sign in to comment.