Skip to content

Commit

Permalink
restoring code related to a missing commit
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalinn committed Sep 24, 2024
1 parent c46ae57 commit 2f3b659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions behavex/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import sys
import time
import traceback
from concurrent.futures import ProcessPoolExecutor, as_completed
from concurrent.futures import ProcessPoolExecutor
from multiprocessing.managers import DictProxy
from tempfile import gettempdir

Expand Down Expand Up @@ -495,7 +495,7 @@ def launch_by_feature(features,
json_reports,
global_vars.progress_bar_instance,
))
for parallel_process in as_completed(parallel_processes):
for parallel_process in parallel_processes:
parallel_process.result()
return execution_codes, json_reports

Expand Down

0 comments on commit 2f3b659

Please sign in to comment.