1 parent cfc1b2c commit 76a16f8Copy full SHA for 76a16f8
1 file changed
test/test_message_sync.py
@@ -16,10 +16,14 @@
16
17
from can import MessageSync, Message
18
19
+from .config import IS_APPVEYOR
20
from .message_helper import ComparingMessagesTestCase
21
from .data.example_data import TEST_MESSAGES_BASE
22
+
23
TEST_FEWER_MESSAGES = TEST_MESSAGES_BASE[::2]
24
25
26
+@unittest.skipIf(IS_APPVEYOR, "this environment's timings are too unpredictable")
27
class TestMessageFiltering(unittest.TestCase, ComparingMessagesTestCase):
28
29
def __init__(self, *args, **kwargs):
@@ -77,6 +81,7 @@ def test_skip(self):
77
81
self.assertMessagesEqual(messages, collected)
78
82
79
83
84
80
85
@pytest.mark.timeout(0.3)
86
@pytest.mark.parametrize("timestamp_1,timestamp_2", [
87
(0.0, 0.0),
0 commit comments