File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 23
23
from .utils import find_port
24
24
from .utils import format_process
25
25
from .utils import warn_unix_socket
26
+ from .utils import signame
26
27
from .test import TestRunGreenlet , TestExecutionError
27
28
from threading import Timer
28
29
Original file line number Diff line number Diff line change 7
7
import signal
8
8
import traceback
9
9
import yaml
10
+ import six
10
11
from datetime import datetime
11
12
12
13
from . import Options
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ def main_loop_parallel():
101
101
102
102
task_groups = get_task_groups ()
103
103
if Options ().args .reproduce :
104
- task_groups = lib . worker . reproduce_task_groups (task_groups )
104
+ task_groups = reproduce_task_groups (task_groups )
105
105
jobs = 1
106
106
randomize = False
107
107
You can’t perform that action at this time.
0 commit comments