mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-08-04 08:04:45 +00:00
Test fixes
This commit is contained in:
@ -1,24 +0,0 @@
|
||||
#!/usr/bin/env python3 -O
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# requirement: pip install pyperf
|
||||
|
||||
import importlib
|
||||
|
||||
from benchmarks.internal_bench import test_suite
|
||||
from benchmarks.internal_bench import run_test
|
||||
from test.conf_test import conf, glob
|
||||
|
||||
|
||||
module= glob();
|
||||
dbdrv = importlib.import_module(module["module"])
|
||||
|
||||
|
||||
def main():
|
||||
default_conf = conf()
|
||||
conn = dbdrv.connect(**default_conf)
|
||||
run_test(test_suite(), conn)
|
||||
conn.close()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
Reference in New Issue
Block a user