From 102aaff2a21d6b323db2027e04b2cdff66e85cea Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Fri, 17 Dec 2021 13:32:04 +0530 Subject: [PATCH] tests: functional: Skip MLDonkey app MLDonkey is currently not available in testing and not installable in unstable. Attempting to install MLDonkey leaves dpkg in a broken state which breaks other app installations as well. Signed-off-by: Joseph Nuthalapati --- plinth/modules/mldonkey/tests/test_functional.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plinth/modules/mldonkey/tests/test_functional.py b/plinth/modules/mldonkey/tests/test_functional.py index d87db3a19..ebd25118d 100644 --- a/plinth/modules/mldonkey/tests/test_functional.py +++ b/plinth/modules/mldonkey/tests/test_functional.py @@ -6,7 +6,9 @@ Functional, browser based tests for mldonkey app. import pytest from plinth.tests import functional -pytestmark = [pytest.mark.apps, pytest.mark.mldonkey, pytest.mark.sso] +pytestmark = [ + pytest.mark.apps, pytest.mark.mldonkey, pytest.mark.sso, pytest.mark.skip +] class TestMldonkeyApp(functional.BaseAppTests):