We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d4e5f commit 4b3fb1cCopy full SHA for 4b3fb1c
safegraph_patterns/delphi_safegraph_patterns/run.py
@@ -17,7 +17,6 @@
17
18
from .process import process
19
20
-mp.set_start_method("spawn")
21
22
METRICS = [
23
# signal_name, naics_code, wip
@@ -106,7 +105,7 @@ def run_module(params):
106
105
logger=logger,
107
)
108
109
- with mp.get_context("spawn").Pool(n_core) as pool:
+ with mp.Pool(n_core) as pool:
110
pool.map(process_file, files)
111
112
elapsed_time_in_seconds = round(time.time() - start_time, 2)
safegraph_patterns/setup.py
@@ -7,6 +7,7 @@
7
"pydocstyle",
8
"pytest",
9
"pytest-cov",
10
+ "coverage==6.2.0",
11
"pylint==2.8.3",
12
"delphi-utils"
13
]
0 commit comments