Merge pull request #5278 from blueyed/disable-python-plugin

Allow disabling of python plugin
This commit is contained in:
Daniel Hahler 2019-05-23 15:52:19 +02:00 committed by GitHub
commit 6c56070df1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 29 additions and 10 deletions

View File

@ -0,0 +1 @@
Pytest's internal python plugin can be disabled using ``-p python`` now again.

View File

@ -60,7 +60,10 @@ class AssertionRewritingHook(object):
def __init__(self, config):
self.config = config
self.fnpats = config.getini("python_files")
try:
self.fnpats = config.getini("python_files")
except ValueError:
self.fnpats = ["test_*.py", "*_test.py"]
self.session = None
self.modules = {}
self._rewritten_names = set()

View File

@ -113,16 +113,16 @@ def directory_arg(path, optname):
# Plugins that cannot be disabled via "-p no:X" currently.
essential_plugins = (
essential_plugins = ( # fmt: off
"mark",
"main",
"runner",
"python",
"fixtures",
"helpconfig", # Provides -p.
)
) # fmt: on
default_plugins = essential_plugins + (
"python",
"terminal",
"debugging",
"unittest",

View File

@ -1075,6 +1075,15 @@ def pytestconfig(request):
return request.config
def pytest_addoption(parser):
parser.addini(
"usefixtures",
type="args",
default=[],
help="list of default fixtures to be used with this project",
)
class FixtureManager(object):
"""
pytest fixtures definitions and information is stored and managed

View File

@ -79,15 +79,10 @@ def pytest_addoption(parser):
default=False,
help="show fixtures per test",
)
parser.addini(
"usefixtures",
type="args",
default=[],
help="list of default fixtures to be used with this project",
)
parser.addini(
"python_files",
type="args",
# NOTE: default is also used in AssertionRewritingHook.
default=["test_*.py", "*_test.py"],
help="glob-style file patterns for Python test module discovery",
)

View File

@ -1228,6 +1228,17 @@ def test_config_blocked_default_plugins(testdir, plugin):
p = testdir.makepyfile("def test(): pass")
result = testdir.runpytest(str(p), "-pno:%s" % plugin)
if plugin == "python":
assert result.ret == EXIT_USAGEERROR
result.stderr.fnmatch_lines(
[
"ERROR: not found: */test_config_blocked_default_plugins.py",
"(no name '*/test_config_blocked_default_plugins.py' in any of [])",
]
)
return
assert result.ret == EXIT_OK
if plugin != "terminal":
result.stdout.fnmatch_lines(["* 1 passed in *"])