mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-07-22 18:26:37 +00:00

Fixed various coding style stuff detected by flake8. Added .pre-commit-config.yaml: With command pre_commit install a hook for flake8 will be installed.
24 lines
423 B
Python
24 lines
423 B
Python
#!/usr/bin/env python3 -O
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# requirement: pip install pyperf
|
|
|
|
import importlib
|
|
|
|
from test.conf_test import conf, glob
|
|
from benchmarks.setup_db import init_db
|
|
|
|
module = glob()
|
|
dbdrv = importlib.import_module(module["module"])
|
|
|
|
|
|
def main():
|
|
default_conf = conf()
|
|
conn = dbdrv.connect(**default_conf)
|
|
init_db(conn, dbdrv.paramstyle)
|
|
conn.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|