Skip to content

Commit e20eb77

Browse files
committed
missed import
1 parent 0f3cf6a commit e20eb77

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

lib/app_server.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
from .utils import find_port
2424
from .utils import format_process
2525
from .utils import warn_unix_socket
26+
from .utils import signame
2627
from .test import TestRunGreenlet, TestExecutionError
2728
from threading import Timer
2829

lib/worker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import signal
88
import traceback
99
import yaml
10+
import six
1011
from datetime import datetime
1112

1213
from . import Options

test-run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def main_loop_parallel():
101101

102102
task_groups = get_task_groups()
103103
if Options().args.reproduce:
104-
task_groups = lib.worker.reproduce_task_groups(task_groups)
104+
task_groups = reproduce_task_groups(task_groups)
105105
jobs = 1
106106
randomize = False
107107

0 commit comments

Comments
 (0)