From ea26171c187f07efed8a1233859d35afe9c5b7a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Thu, 24 Nov 2022 20:39:02 +0100 Subject: [PATCH] Do not require man pages to be present in test script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- test/test_any_automated_install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_any_automated_install.py b/test/test_any_automated_install.py index e6673bb5..2ea619f7 100644 --- a/test/test_any_automated_install.py +++ b/test/test_any_automated_install.py @@ -211,6 +211,8 @@ def test_installPihole_fresh_install_readableFiles(host): maninstalled = True if (info_box + " man not installed") in install.stdout: maninstalled = False + if (info_box + " man pages not installed") in install.stdout: + maninstalled = False piholeuser = "pihole" exit_status_success = 0 test_cmd = 'su --shell /bin/bash --command "test -{0} {1}" -p {2}'