mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 23:27:49 +01:00
test_botan.py: another flaky test
This commit is contained in:
parent
ccb24d1288
commit
2e6db1330f
1 changed files with 3 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
||||||
import os
|
import os
|
||||||
import unittest
|
import unittest
|
||||||
import sys
|
import sys
|
||||||
|
from flaky import flaky
|
||||||
|
|
||||||
sys.path.append('.')
|
sys.path.append('.')
|
||||||
|
|
||||||
from telegram.utils.botan import Botan
|
from telegram.utils.botan import Botan
|
||||||
|
@ -21,6 +23,7 @@ class MessageMock(object):
|
||||||
return "{}"
|
return "{}"
|
||||||
|
|
||||||
|
|
||||||
|
@flaky(3, 1)
|
||||||
class BotanTest(BaseTest, unittest.TestCase):
|
class BotanTest(BaseTest, unittest.TestCase):
|
||||||
"""This object represents Tests for Botan analytics integration."""
|
"""This object represents Tests for Botan analytics integration."""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue