Allow disabling of python plugin

Fixes https://github.com/pytest-dev/pytest/issues/5277.
This commit is contained in:
Daniel Hahler
2019-05-16 16:30:40 +02:00
parent d94b4b031f
commit 93fd9debe3
5 changed files with 28 additions and 10 deletions

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",
)