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 <njoseph@riseup.net>
This commit is contained in:
Joseph Nuthalapati 2021-12-17 13:32:04 +05:30
parent d09fe5240b
commit 102aaff2a2
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35

View File

@ -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):