Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
singlestore-labs
GitHub Repository: singlestore-labs/singlestoredb-python
Path: blob/main/singlestoredb/mysql/tests/__init__.py
469 views
1
# type: ignore
2
# Sorted by alphabetical order
3
from singlestoredb.mysql.tests.test_basic import * # noqa: F403, F401
4
from singlestoredb.mysql.tests.test_connection import * # noqa: F403, F401
5
from singlestoredb.mysql.tests.test_converters import * # noqa: F403, F401
6
from singlestoredb.mysql.tests.test_cursor import * # noqa: F403, F401
7
from singlestoredb.mysql.tests.test_DictCursor import * # noqa: F403, F401
8
from singlestoredb.mysql.tests.test_err import * # noqa: F403, F401
9
from singlestoredb.mysql.tests.test_issues import * # noqa: F403, F401
10
from singlestoredb.mysql.tests.test_load_local import * # noqa: F403, F401
11
from singlestoredb.mysql.tests.test_nextset import * # noqa: F403, F401
12
from singlestoredb.mysql.tests.test_optionfile import * # noqa: F403, F401
13
from singlestoredb.mysql.tests.test_SSCursor import * # noqa: F403, F401
14
from singlestoredb.mysql.tests.thirdparty import * # noqa: F403, F401
15
16
if __name__ == '__main__':
17
import unittest
18
19
unittest.main()
20
21