Skip to content

Commit 56d7fe1

Browse files
author
Andrei Neagu
committed
refactor 7zip
1 parent 2a2f917 commit 56d7fe1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/github/helpers/install_rclone.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ set -o nounset # abort on unbound variable
99
set -o pipefail # don't hide errors within pipes
1010
IFS=$'\n\t'
1111

12-
exec "$( dirname -- "$0"; )"/../../../scripts/install_rclone.bash
12+
apt-get install p7zip-full

services/dynamic-sidecar/tests/unit/test_modules_seven_zip_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def generate_content(
6565
@pytest.fixture
6666
def skip_if_seven_zip_is_missing() -> None:
6767
try:
68-
subprocess.check_output(["7z", "--help"]) # noqa: S607
68+
subprocess.check_output(["7z", "--help"]) # noqa: S607, S603
6969
except Exception: # pylint: disable=broad-except
7070
pytest.skip("7z is not installed")
7171

0 commit comments

Comments
 (0)