Merge pull request #1451 from blueyed/fix-doc-pytest_load_initial_conftests

docs: sort arguments for pytest_load_initial_conftests
the change is purely cosmetic, but its nice to have them ordered by name
This commit is contained in:
Ronny Pfannschmidt 2016-03-14 14:14:22 +01:00
commit 19cec79363
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ Christian Theunert
Christian Tismer
Christopher Gilling
Daniel Grana
Daniel Hahler
Daniel Nuri
Dave Hunt
David Mohr

View File

@ -81,7 +81,7 @@ def pytest_cmdline_main(config):
""" called for performing the main command line action. The default
implementation will invoke the configure hooks and runtest_mainloop. """
def pytest_load_initial_conftests(args, early_config, parser):
def pytest_load_initial_conftests(early_config, parser, args):
""" implements the loading of initial conftest files ahead
of command line option parsing. """