@@ -26,6 +26,10 @@ def test_dist_options(testdir):
|
||||
|
||||
|
||||
def test_auto_detect_cpus(testdir, monkeypatch):
|
||||
import os
|
||||
if hasattr(os, 'cpu_count'):
|
||||
monkeypatch.setattr(os, 'cpu_count', lambda: 99)
|
||||
else:
|
||||
import multiprocessing
|
||||
monkeypatch.setattr(multiprocessing, 'cpu_count', lambda: 99)
|
||||
|
||||
|
||||
@@ -4,8 +4,15 @@ import pytest
|
||||
|
||||
def parse_numprocesses(s):
|
||||
if s == 'auto':
|
||||
import multiprocessing
|
||||
return multiprocessing.cpu_count()
|
||||
try:
|
||||
from os import cpu_count
|
||||
except ImportError:
|
||||
from multiprocessing import cpu_count
|
||||
try:
|
||||
n = cpu_count()
|
||||
except NotImplementedError:
|
||||
return 1
|
||||
return n if n else 1
|
||||
else:
|
||||
return int(s)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user