8
8
9
9
DEFAULT_CONDITION_POLL_TIME = 17
10
10
DEFAULT_CONDITION_TIMEOUT = 4000
11
- AWAIT_WORKER = ' AWAIT_WORKER'
11
+ AWAIT_WORKER = " AWAIT_WORKER"
12
12
# Extract `set_timeout_async`, t.i. *avoid* late binding, in case a user
13
13
# patches it
14
14
run_on_worker = sublime .set_timeout_async
@@ -34,7 +34,8 @@ def __init__(
34
34
condition_timeout = DEFAULT_CONDITION_TIMEOUT ,
35
35
):
36
36
super (DeferringTextTestRunner , self ).__init__ (
37
- stream , descriptions , verbosity , failfast , buffer , resultclass , warnings )
37
+ stream , descriptions , verbosity , failfast , buffer , resultclass , warnings
38
+ )
38
39
self .condition_timeout = condition_timeout
39
40
40
41
def run (self , test ):
@@ -56,13 +57,13 @@ def _start_testing():
56
57
# no more than once per module, because they can be fairly
57
58
# noisy. The -Wd and -Wa flags can be used to bypass this
58
59
# only when self.warnings is None.
59
- if self .warnings in [' default' , ' always' ]:
60
+ if self .warnings in [" default" , " always" ]:
60
61
warnings .filterwarnings (
61
- ' module' ,
62
+ " module" ,
62
63
category = DeprecationWarning ,
63
- message = ' Please use assert\\ w+ instead.'
64
+ message = " Please use assert\\ w+ instead." ,
64
65
)
65
- startTestRun = getattr (result , ' startTestRun' , None )
66
+ startTestRun = getattr (result , " startTestRun" , None )
66
67
if startTestRun is not None :
67
68
startTestRun ()
68
69
try :
@@ -81,8 +82,11 @@ def _continue_testing(deferred, send_value=None, throw_value=None):
81
82
82
83
if callable (condition ):
83
84
defer (0 , _wait_condition , deferred , condition )
84
- elif isinstance (condition , dict ) and "condition" in condition and \
85
- callable (condition ["condition" ]):
85
+ elif (
86
+ isinstance (condition , dict )
87
+ and "condition" in condition
88
+ and callable (condition ["condition" ])
89
+ ):
86
90
period = condition .get ("period" , DEFAULT_CONDITION_POLL_TIME )
87
91
defer (period , _wait_condition , deferred , ** condition )
88
92
elif isinstance (condition , int ):
@@ -103,7 +107,7 @@ def _wait_condition(
103
107
condition ,
104
108
period = DEFAULT_CONDITION_POLL_TIME ,
105
109
timeout = self .condition_timeout ,
106
- start_time = None
110
+ start_time = None ,
107
111
):
108
112
if start_time is None :
109
113
start_time = time .time ()
@@ -118,41 +122,56 @@ def _wait_condition(
118
122
_continue_testing (deferred , send_value = send_value )
119
123
elif (time .time () - start_time ) * 1000 >= timeout :
120
124
error = TimeoutError (
121
- 'Condition not fulfilled within {:.2f} seconds'
122
- .format (timeout / 1000 )
125
+ "Condition not fulfilled within {:.2f} seconds" .format (
126
+ timeout / 1000
127
+ )
123
128
)
124
129
_continue_testing (deferred , throw_value = error )
125
130
else :
126
- defer (period , _wait_condition , deferred , condition , period , timeout , start_time )
131
+ defer (
132
+ period ,
133
+ _wait_condition ,
134
+ deferred ,
135
+ condition ,
136
+ period ,
137
+ timeout ,
138
+ start_time ,
139
+ )
127
140
128
141
def _handle_error (e ):
129
- stopTestRun = getattr (result , ' stopTestRun' , None )
142
+ stopTestRun = getattr (result , " stopTestRun" , None )
130
143
if stopTestRun is not None :
131
144
stopTestRun ()
132
145
self .finished = True
133
146
raise e
134
147
135
148
def _stop_testing ():
136
149
with warnings .catch_warnings ():
137
- stopTestRun = getattr (result , ' stopTestRun' , None )
150
+ stopTestRun = getattr (result , " stopTestRun" , None )
138
151
if stopTestRun is not None :
139
152
stopTestRun ()
140
153
141
154
stopTime = time .time ()
142
155
timeTaken = stopTime - startTime
143
156
result .printErrors ()
144
- if hasattr (result , ' separator2' ):
157
+ if hasattr (result , " separator2" ):
145
158
self .stream .writeln (result .separator2 )
146
159
run = result .testsRun
147
- self .stream .writeln ("Ran %d test%s in %.3fs" %
148
- (run , run != 1 and "s" or "" , timeTaken ))
160
+ self .stream .writeln (
161
+ "Ran %d test%s in %.3fs" % (run , run != 1 and "s" or "" , timeTaken )
162
+ )
149
163
self .stream .writeln ()
150
164
151
165
expectedFails = unexpectedSuccesses = skipped = 0
152
166
try :
153
- results = map (len , (result .expectedFailures ,
154
- result .unexpectedSuccesses ,
155
- result .skipped ))
167
+ results = map (
168
+ len ,
169
+ (
170
+ result .expectedFailures ,
171
+ result .unexpectedSuccesses ,
172
+ result .skipped ,
173
+ ),
174
+ )
156
175
except AttributeError :
157
176
pass
158
177
else :
0 commit comments