Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
openssh-client \
jq \
zsh \
gpg \
gpg-agent \
gnupg \
# Database clients:
postgresql-client \
libmariadb-dev \
Expand Down
2 changes: 1 addition & 1 deletion tests/specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ commandTests:
- name: "gpg is installed in path"
command: "gpg"
args: ["--version"]
expectedOutput: ["gpg (GnuPG)"]
expectedOutput: ["gpg"]
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The expected output for the gpg command has been simplified from gpg (GnuPG) to just gpg. This reduces the specificity of the test, as gpg is a very common string and might lead to false positives (e.g., if the command fails but the error message contains the word 'gpg'). It is recommended to keep the more specific string to ensure the correct GnuPG implementation is present and working as expected.

    expectedOutput: ["gpg (GnuPG)"]


- name: "uv is installed in path"
command: "uv"
Expand Down
Loading