Merge pull request #3422 from rachel1792/master

updated doc to delete deprecated hook: Issue #3417
This commit is contained in:
Bruno Oliveira
2018-04-23 19:24:52 -03:00
committed by GitHub

View File

@@ -102,7 +102,7 @@ the command line arguments before they get processed:
# content of conftest.py
import sys
def pytest_cmdline_preparse(args):
def pytest_load_initial_conftests(args):
if 'xdist' in sys.modules: # pytest-xdist plugin
import multiprocessing
num = max(multiprocessing.cpu_count() / 2, 1)