full comment sqlthread

This commit is contained in:
Muzahid 2021-06-21 22:19:53 +05:30
parent adb6521fb7
commit 61fac9e8d7
Signed by untrusted user: cis-muzahid
GPG Key ID: 1DC85E7D3AB613EA

View File

@ -1,22 +1,22 @@
"""Tests for SQL thread""" # """Tests for SQL thread"""
# flake8: noqa:E402 # # flake8: noqa:E402
import os # import os
import tempfile # import tempfile
import threading # import threading
import unittest # import unittest
#
from .common import skip_python3 # from .common import skip_python3
#
skip_python3() # skip_python3()
#
os.environ['BITMESSAGE_HOME'] = tempfile.gettempdir() # os.environ['BITMESSAGE_HOME'] = tempfile.gettempdir()
#
from pybitmessage.helper_sql import ( # from pybitmessage.helper_sql import (
sqlQuery, sql_ready, sqlStoredProcedure) # noqa:E402 # sqlQuery, sql_ready, sqlStoredProcedure) # noqa:E402
from pybitmessage.class_sqlThread import sqlThread # noqa:E402 # from pybitmessage.class_sqlThread import sqlThread # noqa:E402
from pybitmessage.addresses import encodeAddress # noqa:E402 # from pybitmessage.addresses import encodeAddress # noqa:E402
#
#
# class TestSqlThread(unittest.TestCase): # class TestSqlThread(unittest.TestCase):
# """Test case for SQL thread""" # """Test case for SQL thread"""
# #