From 1f210c0b0b97104645f382f0d8efa796d5b4944d Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 9 Jun 2020 23:42:21 -0400 Subject: [PATCH] skip event queue test until it can be more reliable --- tests/unit/test_event_controller.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit/test_event_controller.py b/tests/unit/test_event_controller.py index f230b3f7f..0db07d3bd 100644 --- a/tests/unit/test_event_controller.py +++ b/tests/unit/test_event_controller.py @@ -1,6 +1,7 @@ import asyncio import logging import multiprocessing as mp +from unittest import skip from concurrent.futures import ThreadPoolExecutor from lbry.testcase import AsyncioTestCase @@ -60,6 +61,7 @@ class StreamControllerTestCase(AsyncioTestCase): self.assertEqual("two", await last) +@skip('need to make this test more reliable') class TestEventQueuePublisher(AsyncioTestCase): async def test_event_buffering_avoids_overloading_asyncio(self):