Merge pull request #2100 from blueyed/fix-help-grammar

minor: fix grammar with help for --setup-{only,show}
This commit is contained in:
Bruno Oliveira 2016-11-28 20:11:56 -02:00 committed by GitHub
commit 8b4da9d955
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ import sys
def pytest_addoption(parser):
group = parser.getgroup("debugconfig")
group.addoption('--setuponly', '--setup-only', action="store_true",
help="only setup fixtures, don't execute the tests.")
help="only setup fixtures, do not execute tests.")
group.addoption('--setupshow', '--setup-show', action="store_true",
help="show setup fixtures while executing the tests.")
help="show setup of fixtures while executing tests.")
@pytest.hookimpl(hookwrapper=True)