minor: fix grammar with help for --setup-{only,show}

This commit is contained in:
Daniel Hahler 2016-11-28 21:33:15 +01:00
parent 0735d4549d
commit 40cffacadc
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)