Skip to content

Commit 8939ce7

Browse files
committed
Tests: Disable testing for apns service plugin
The `apns` package is not ready for Python3.
1 parent cd7ed0a commit 8939ce7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/services/test_apns.py

+4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
from unittest import mock
44
from unittest.mock import call
55

6+
import pytest
7+
68
from mqttwarn.model import ProcessorItem as Item
79
from mqttwarn.util import load_module_from_file
810

11+
pytest.skip(reason="The `apns` package is not ready for Python3", allow_module_level=True)
12+
913

1014
@mock.patch("apns.APNs", create=True)
1115
@mock.patch("apns.Payload", create=True)

0 commit comments

Comments
 (0)