We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09008c8 commit 0c67e9fCopy full SHA for 0c67e9f
1 file changed
filebeat/tests/system/test_udp.py
@@ -1,9 +1,12 @@
1
from filebeat import BaseTest
2
+import os
3
import socket
4
+import unittest
5
6
7
class Test(BaseTest):
8
9
+ @unittest.skipIf(os.name == 'nt', 'flaky test https://github.com/elastic/beats/issues/22809')
10
def test_udp(self):
11
12
host = "127.0.0.1"
0 commit comments