Fix python3 / kivy test
This commit is contained in:
parent
5b537eabe1
commit
d6823a6fb1
|
@ -7,6 +7,8 @@ import shutil
|
|||
import tempfile
|
||||
from time import time, sleep
|
||||
|
||||
from requests.exceptions import ChunkedEncodingError
|
||||
|
||||
from telenium.tests import TeleniumTestCase
|
||||
from telenium.client import TeleniumHttpException
|
||||
|
||||
|
@ -54,7 +56,10 @@ class TeleniumTestProcess(TeleniumTestCase):
|
|||
def tearDownClass(cls):
|
||||
"""Ensures that pybitmessage stopped and removes files"""
|
||||
# pylint: disable=no-member
|
||||
super(TeleniumTestProcess, cls).tearDownClass()
|
||||
try:
|
||||
super(TeleniumTestProcess, cls).tearDownClass()
|
||||
except ChunkedEncodingError:
|
||||
pass
|
||||
cleanup()
|
||||
|
||||
def assert_wait_no_except(self, selector, timeout=-1, value='inbox'):
|
||||
|
|
|
@ -11,11 +11,17 @@ import hashlib
|
|||
import os
|
||||
from binascii import hexlify
|
||||
|
||||
import pyelliptic
|
||||
from pyelliptic import OpenSSL
|
||||
from pyelliptic import arithmetic as a
|
||||
try:
|
||||
import pyelliptic
|
||||
from fallback import RIPEMD160Hash
|
||||
from pyelliptic import OpenSSL
|
||||
from pyelliptic import arithmetic as a
|
||||
except ImportError:
|
||||
from pybitmessage import pyelliptic
|
||||
from pybitmessage.fallback import RIPEMD160Hash
|
||||
from pybitmessage.pyelliptic import OpenSSL
|
||||
from pybitmessage.pyelliptic import arithmetic as a
|
||||
|
||||
from fallback import RIPEMD160Hash
|
||||
|
||||
__all__ = [
|
||||
'decodeWalletImportFormat', 'deterministic_keys',
|
||||
|
|
Reference in New Issue
Block a user