1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Emmanuel Arias <eamanu@yaerobi.com>
Date: Thu, 26 May 2022 15:24:07 -0300
Subject: Skip test_multi_timer_validation flaky test
Bug: https://datastax-oss.atlassian.net/browse/PYTHON-1301
Bug-Debian: https://bugs.debian.org/1000612
---
tests/unit/io/utils.py | 1 +
1 file changed, 1 insertion(+)
--- a/tests/unit/io/utils.py
+++ b/tests/unit/io/utils.py
@@ -159,6 +159,7 @@ class TimerTestMixin(object):
def tearDown(self):
self.connection.close()
+ @unittest.skip("Skip flaky test")
def test_multi_timer_validation(self):
"""
Verify that timer timeouts are honored appropriately
|