There was an error while loading. Please reload this page.
2 parents 9bbeb54 + 20d8600 commit 7fde561Copy full SHA for 7fde561
1 file changed
tests/system/test_systemd.py
@@ -25,7 +25,10 @@ def test_failed_units(host: Host) -> None:
25
def test_verify_default_target(host: Host) -> None:
26
analyse = host.ssh('systemd-analyze verify default.target')
27
err = False
28
+ polkit_msg = "Cannot add dependency job for unit polkit.service, ignoring: Unit not found."
29
for line in analyse.splitlines():
30
+ if line == polkit_msg:
31
+ pytest.xfail(f"drbd-reactor package must be fixed to remove dep to polkit: {polkit_msg}")
32
if line not in white_list_issues:
33
logging.error(f"{line}")
34
err = True
0 commit comments