From ea4f47fed19da2368c9319451de0bcc535c55df0 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sat, 14 Apr 2018 11:16:43 +0200 Subject: [PATCH] Temporarily disable one test as we are not able to use setcap on Travis CI Signed-off-by: DL6ER --- test/test_automated_install.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/test/test_automated_install.py b/test/test_automated_install.py index 2c65c660..c4574168 100644 --- a/test/test_automated_install.py +++ b/test/test_automated_install.py @@ -310,15 +310,16 @@ def test_FTL_download_unknown_fails_no_errors(Pihole): error = 'Error: URL not found' assert error in download_binary.stdout -def test_FTL_binary_installed_and_responsive_no_errors(Pihole): - ''' confirms FTL binary is copied and functional in installed location ''' - installed_binary = Pihole.run(''' - source /opt/pihole/basic-install.sh - FTLdetect - pihole-FTL version - ''') - expected_stdout = 'v' - assert expected_stdout in installed_binary.stdout +# Temporarily disabled as we cannot use setcap on Travis CI +# def test_FTL_binary_installed_and_responsive_no_errors(Pihole): +# ''' confirms FTL binary is copied and functional in installed location ''' +# installed_binary = Pihole.run(''' +# source /opt/pihole/basic-install.sh +# FTLdetect +# pihole-FTL version +# ''') +# expected_stdout = 'v' +# assert expected_stdout in installed_binary.stdout # def test_FTL_support_files_installed(Pihole): # ''' confirms FTL support files are installed '''