diff --git a/tests/system/test_checklogs.py b/tests/system/test_checklogs.py index 69fca4ab..f40751e5 100644 --- a/tests/system/test_checklogs.py +++ b/tests/system/test_checklogs.py @@ -14,7 +14,7 @@ def test_logs(host, logfile): result = host.ssh(["grep -B1 -Ei 'error|fail|fatal|critical|No such file'", LOGFILE], check=False, simple_output=False) assert result.returncode in (0, 1), "error in 'ssh grep'" - #assert result.returncode == 1, f"Errors in {logfile}, see debug output" + # assert result.returncode == 1, f"Errors in {logfile}, see debug output" assert result.returncode == 0, f"It is NOT NORMAL AT ALL to have no error in {logfile}" # FIXME too many false positives to be a real test, essentially useful @@ -25,5 +25,5 @@ def test_install_logs(host): result = host.ssh(["grep -B1 -Ei 'error|fail|fatal|critical|No such file'", LOGFILE], check=False, simple_output=False) assert result.returncode in (0, 1), "error in 'ssh grep'" - #assert result.returncode == 1, f"Errors in {logfile}, see debug output" + # assert result.returncode == 1, f"Errors in {logfile}, see debug output" assert result.returncode == 0, f"It is NOT NORMAL AT ALL to have no error in {logfile}"