Skip to content

Commit 0c67e9f

Browse files
authored
Skip somewhat flaky UDP system test on Windows (#22810)
1 parent 09008c8 commit 0c67e9f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

filebeat/tests/system/test_udp.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
from filebeat import BaseTest
2+
import os
23
import socket
4+
import unittest
35

46

57
class Test(BaseTest):
68

9+
@unittest.skipIf(os.name == 'nt', 'flaky test https://github.com/elastic/beats/issues/22809')
710
def test_udp(self):
811

912
host = "127.0.0.1"

0 commit comments

Comments
 (0)