Followup to #1718: style/formatting

This commit is contained in:
Daniel Hahler
2016-07-23 18:09:42 +02:00
parent 9891593413
commit 5c5d7e05f7
4 changed files with 48 additions and 66 deletions

View File

@@ -20,10 +20,10 @@ def pytest_addoption(parser):
group.addoption('--debug',
action="store_true", dest="debug", default=False,
help="store internal tracing debug information in 'pytestdebug.log'.")
# support for "--overwrite-ini ININAME=INIVALUE" to override values from the ini file
# Example '-o xfail_strict=True'.
group._addoption('-o', '--override-ini', nargs='*', dest="override_ini", action="append",
help="overrides ini values which do not have a separate command-line flag")
group._addoption(
'-o', '--override-ini', nargs='*', dest="override_ini",
action="append",
help="override config option, e.g. `-o xfail_strict=True`.")
@pytest.hookimpl(hookwrapper=True)