mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-17 22:22:13 -04:00
1e278de4cc
Applied on top of a pure run of black -l 79 in I7eda77fed3d8e73df84b3651fd6cfcfe858d4dc9, this set of changes resolves all remaining flake8 conditions for those codes we have enabled in setup.cfg. Included are resolutions for all remaining flake8 issues including shadowed builtins, long lines, import order, unused imports, duplicate imports, and docstring issues. Change-Id: I4f72d3ba1380dd601610ff80b8fb06a2aff8b0fe
41 lines
1.1 KiB
Python
Executable File
41 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
pytest plugin script.
|
|
|
|
This script is an extension to py.test which
|
|
installs SQLAlchemy's testing plugin into the local environment.
|
|
|
|
"""
|
|
import os
|
|
import sys
|
|
|
|
|
|
if not sys.flags.no_user_site:
|
|
# this is needed so that test scenarios like "python setup.py test"
|
|
# work correctly, as well as plain "py.test". These commands assume
|
|
# that the package in question is locally present, but since we have
|
|
# ./lib/, we need to punch that in.
|
|
# We check no_user_site to honor the use of this flag.
|
|
sys.path.insert(
|
|
0,
|
|
os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "lib"),
|
|
)
|
|
|
|
# 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__),
|
|
"..",
|
|
"lib",
|
|
"sqlalchemy",
|
|
"testing",
|
|
"plugin",
|
|
"bootstrap.py",
|
|
)
|
|
|
|
with open(bootstrap_file) as f:
|
|
code = compile(f.read(), "bootstrap.py", "exec")
|
|
to_bootstrap = "pytest"
|
|
exec(code, globals(), locals())
|
|
from pytestplugin import * # noqa
|