summaryrefslogtreecommitdiff
path: root/run_tests.py
blob: 71770fc0262ae0e82b11b2de8853d56ac8522bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import os
# use bootstrapping so that test plugins are loaded
# without touching the main library before coverage starts
bootstrap_file = os.path.join(
    os.path.dirname(__file__), "alembic",
    "testing", "plugin", "bootstrap.py"
)

with open(bootstrap_file) as f:
    code = compile(f.read(), "bootstrap.py", 'exec')
    to_bootstrap = "nose"
    exec(code, globals(), locals())


from noseplugin import NoseSQLAlchemy
import nose
nose.main(addplugins=[NoseSQLAlchemy()])