Merge pull request #3422 from rachel1792/master
updated doc to delete deprecated hook: Issue #3417
This commit is contained in:
commit
d61a7670a1
|
@ -102,7 +102,7 @@ the command line arguments before they get processed:
|
||||||
|
|
||||||
# content of conftest.py
|
# content of conftest.py
|
||||||
import sys
|
import sys
|
||||||
def pytest_cmdline_preparse(args):
|
def pytest_load_initial_conftests(args):
|
||||||
if 'xdist' in sys.modules: # pytest-xdist plugin
|
if 'xdist' in sys.modules: # pytest-xdist plugin
|
||||||
import multiprocessing
|
import multiprocessing
|
||||||
num = max(multiprocessing.cpu_count() / 2, 1)
|
num = max(multiprocessing.cpu_count() / 2, 1)
|
||||||
|
|
Loading…
Reference in New Issue