forked from python/mypy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.py
executable file
·382 lines (326 loc) · 13.4 KB
/
runtests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
#!/usr/bin/env python3
"""Mypy test runner."""
from typing import List, Optional, Set, Iterable, Tuple
import itertools
import os
from os.path import join, isdir
import sys
from waiter import Waiter, LazySubprocess
def get_versions() -> List[str]:
major = sys.version_info[0]
minor = sys.version_info[1]
if major == 2:
return ['2.7']
else:
# generates list of python versions to use.
# For Python2, this is only [2.7].
# Otherwise, it is [3.4, 3.3, 3.2, 3.1, 3.0].
return ['%d.%d' % (major, i) for i in range(minor, -1, -1)]
class Driver:
def __init__(self, *, whitelist: List[str], blacklist: List[str],
lf: bool, ff: bool,
arglist: List[str], pyt_arglist: List[str],
verbosity: int, parallel_limit: int,
xfail: List[str], coverage: bool) -> None:
self.whitelist = whitelist
self.blacklist = blacklist
self.arglist = arglist
self.pyt_arglist = pyt_arglist
self.verbosity = verbosity
self.waiter = Waiter(verbosity=verbosity, limit=parallel_limit, xfail=xfail, lf=lf, ff=ff)
self.versions = get_versions()
self.cwd = os.getcwd()
self.mypy = os.path.join(self.cwd, 'scripts', 'mypy')
self.env = dict(os.environ)
self.coverage = coverage
def prepend_path(self, name: str, paths: List[str]) -> None:
old_val = self.env.get(name)
paths = [p for p in paths if isdir(p)]
if not paths:
return
if old_val is not None:
new_val = os.pathsep.join(itertools.chain(paths, [old_val]))
else:
new_val = os.pathsep.join(paths)
self.env[name] = new_val
def allow(self, name: str) -> bool:
if any(f in name for f in self.whitelist):
if not any(f in name for f in self.blacklist):
if self.verbosity >= 2:
print('SELECT #%d %s' % (len(self.waiter.queue), name))
return True
if self.verbosity >= 3:
print('OMIT %s' % name)
return False
def add_mypy_cmd(self, name: str, mypy_args: List[str], cwd: Optional[str] = None) -> None:
full_name = 'check %s' % name
if not self.allow(full_name):
return
args = [sys.executable, self.mypy] + mypy_args
args.append('--show-traceback')
args.append('--no-site-packages')
self.waiter.add(LazySubprocess(full_name, args, cwd=cwd, env=self.env))
def add_mypy(self, name: str, *args: str, cwd: Optional[str] = None) -> None:
self.add_mypy_cmd(name, list(args), cwd=cwd)
def add_mypy_modules(self, name: str, modules: Iterable[str], cwd: Optional[str] = None,
extra_args: Optional[List[str]] = None) -> None:
args = extra_args or []
args.extend(list(itertools.chain(*(['-m', mod] for mod in modules))))
self.add_mypy_cmd(name, args, cwd=cwd)
def add_mypy_package(self, name: str, packagename: str, *flags: str) -> None:
self.add_mypy_cmd(name, ['-p', packagename] + list(flags))
def add_pytest(self, files: List[Tuple[str, str]], coverage: bool = True) -> None:
pytest_files = [name for kind, name in files
if self.allow('pytest {} {}'.format(kind, name))]
if not pytest_files:
return
pytest_args = pytest_files + self.arglist + self.pyt_arglist
if coverage and self.coverage:
args = [sys.executable, '-m', 'pytest', '--cov=mypy'] + pytest_args
else:
args = [sys.executable, '-m', 'pytest'] + pytest_args
self.waiter.add(LazySubprocess('pytest', args, env=self.env,
passthrough=self.verbosity),
sequential=True)
def add_flake8(self, cwd: Optional[str] = None) -> None:
name = 'lint'
if not self.allow(name):
return
largs = ['flake8', '-j0']
env = self.env
self.waiter.add(LazySubprocess(name, largs, cwd=cwd, env=env))
def list_tasks(self) -> None:
for id, task in enumerate(self.waiter.queue):
print('{id}:{task}'.format(id=id, task=task.name))
def add_selftypecheck(driver: Driver) -> None:
driver.add_mypy('file runtests.py', 'runtests.py')
driver.add_mypy('file waiter.py', 'waiter.py')
driver.add_mypy_package('package mypy', 'mypy', '--config-file', 'mypy_self_check.ini')
def find_files(base: str, prefix: str = '', suffix: str = '') -> List[str]:
return [join(root, f)
for root, dirs, files in os.walk(base)
for f in files
if f.startswith(prefix) and f.endswith(suffix)]
def file_to_module(file: str) -> str:
rv = os.path.splitext(file)[0].replace(os.sep, '.')
if rv.endswith('.__init__'):
rv = rv[:-len('.__init__')]
return rv
def test_path(*names: str):
return [os.path.join('mypy', 'test', '{}.py'.format(name))
for name in names]
PYTEST_FILES = test_path(
'testcheck',
'testextensions',
'testdeps',
'testdiff',
'testfinegrained',
'testfinegrainedcache',
'testmerge',
'testtransform',
'testtypegen',
'testparse',
'testsemanal',
'testerrorstream',
# non-data-driven:
'testgraph',
'testinfer',
'testmoduleinfo',
'teststubgen',
'testargs',
'testreports',
'testsolve',
'testsubtypes',
'testtypes',
)
SLOW_FILES = test_path(
'testpep561',
'testpythoneval',
'testcmdline',
'teststubgen',
)
def add_pytest(driver: Driver) -> None:
for f in find_files('mypy', prefix='test', suffix='.py'):
assert f in PYTEST_FILES + SLOW_FILES, f
driver.add_pytest([('unit-test', name) for name in PYTEST_FILES] +
[('integration', name) for name in SLOW_FILES])
def add_stubs(driver: Driver) -> None:
# We only test each module in the one version mypy prefers to find.
# TODO: test stubs for other versions, especially Python 2 stubs.
modules = {'typing'}
# TODO: This should also test Python 2, and pass pyversion accordingly.
for version in ["2and3", "3", "3.3", "3.4", "3.5"]:
for stub_type in ['builtins', 'stdlib', 'third_party']:
stubdir = join('typeshed', stub_type, version)
for f in find_files(stubdir, suffix='.pyi'):
module = file_to_module(f[len(stubdir) + 1:])
modules.add(module)
# these require at least 3.5 otherwise it will fail trying to import zipapp
driver.add_mypy_modules('stubs', sorted(modules), extra_args=['--python-version=3.5'])
def add_stdlibsamples(driver: Driver) -> None:
seen = set() # type: Set[str]
for version in driver.versions:
stdlibsamples_dir = join(driver.cwd, 'test-data', 'stdlib-samples', version)
modules = [] # type: List[str]
for f in find_files(stdlibsamples_dir, prefix='test_', suffix='.py'):
module = file_to_module(f[len(stdlibsamples_dir) + 1:])
if module not in seen:
seen.add(module)
modules.append(module)
if modules:
# TODO: Remove need for --no-strict-optional
driver.add_mypy_modules('stdlibsamples (%s)' % (version,), modules,
cwd=stdlibsamples_dir, extra_args=['--no-strict-optional'])
def add_samples(driver: Driver) -> None:
for f in find_files(os.path.join('test-data', 'samples'), suffix='.py'):
mypy_args = ['--no-strict-optional']
if f == os.path.join('test-data', 'samples', 'crawl2.py'):
# This test requires 3.5 for async functions
mypy_args.append('--python-version=3.5')
driver.add_mypy_cmd('file {}'.format(f), mypy_args + [f])
def usage(status: int) -> None:
print('Usage: %s [-h | -v | -q | --lf | --ff | [-x] FILTER | -a ARG | -p ARG]'
'... [-- FILTER ...]'
% sys.argv[0])
print()
print('Run mypy tests. If given no arguments, run all tests.')
print()
print('Examples:')
print(' %s unit-test (run unit tests only)' % sys.argv[0])
print(' %s testcheck (run type checking unit tests only)' % sys.argv[0])
print(' %s "pytest unit-test" -a -k -a Tuple' % sys.argv[0])
print(' (run all pytest unit tests with "Tuple" in test name)')
print()
print('You can also run pytest directly without using %s:' % sys.argv[0])
print(' pytest mypy/test/testcheck.py -k Tuple')
print()
print('Options:')
print(' -h, --help show this help')
print(' -v, --verbose increase driver verbosity')
print(' --lf rerun only the tests that failed at the last run')
print(' --ff run all tests but run the last failures first')
print(' -q, --quiet decrease driver verbosity')
print(' -jN run N tasks at once (default: one per CPU)')
print(' -p, --pytest_arg ARG pass an argument to pytest tasks')
print(' (-v: verbose; glob pattern: filter by test name)')
print(' -l, --list list included tasks (after filtering) and exit')
print(' FILTER include tasks matching FILTER')
print(' -x, --exclude FILTER exclude tasks matching FILTER')
print(' -c, --coverage calculate code coverage while running tests')
print(' -- treat all remaining arguments as positional')
sys.exit(status)
def sanity() -> None:
paths = os.getenv('PYTHONPATH')
if paths is None:
return
failed = False
for p in paths.split(os.pathsep):
if not os.path.isabs(p):
print('Relative PYTHONPATH entry %r' % p)
failed = True
if failed:
print('Please use absolute so that chdir() tests can work.')
print('Cowardly refusing to continue.')
sys.exit(1)
def main() -> None:
import time
t0 = time.perf_counter()
sanity()
verbosity = 0
parallel_limit = 0
whitelist = [] # type: List[str]
blacklist = [] # type: List[str]
arglist = [] # type: List[str]
pyt_arglist = [] # type: List[str]
lf = False
ff = False
list_only = False
coverage = False
allow_opts = True
curlist = whitelist
for a in sys.argv[1:]:
if not (curlist is arglist or curlist is pyt_arglist) and allow_opts and a.startswith('-'):
if curlist is not whitelist:
break
if a == '--':
allow_opts = False
elif a == '-v' or a == '--verbose':
verbosity += 1
elif a == '-q' or a == '--quiet':
verbosity -= 1
elif a.startswith('-j'):
try:
parallel_limit = int(a[2:])
except ValueError:
usage(1)
elif a == '-x' or a == '--exclude':
curlist = blacklist
elif a == '-a' or a == '--argument':
curlist = arglist
elif a == '-p' or a == '--pytest_arg':
curlist = pyt_arglist
# will also pass this option to pytest
elif a == '--lf':
lf = True
# will also pass this option to pytest
elif a == '--ff':
ff = True
elif a == '-l' or a == '--list':
list_only = True
elif a == '-c' or a == '--coverage':
coverage = True
elif a == '-h' or a == '--help':
usage(0)
else:
usage(1)
else:
curlist.append(a)
curlist = whitelist
if curlist is blacklist:
sys.exit('-x must be followed by a filter')
if curlist is arglist:
sys.exit('-a must be followed by an argument')
if curlist is pyt_arglist:
sys.exit('-p must be followed by an argument')
if lf and ff:
sys.exit('use either --lf or --ff, not both')
# empty string is a substring of all names
if not whitelist:
whitelist.append('')
if lf:
pyt_arglist.append('--lf')
if ff:
pyt_arglist.append('--ff')
if verbosity >= 1:
pyt_arglist.extend(['-v'] * verbosity)
elif verbosity < 0:
pyt_arglist.extend(['-q'] * (-verbosity))
if parallel_limit:
if '-n' not in pyt_arglist:
pyt_arglist.append('-n{}'.format(parallel_limit))
driver = Driver(whitelist=whitelist, blacklist=blacklist, lf=lf, ff=ff,
arglist=arglist, pyt_arglist=pyt_arglist, verbosity=verbosity,
parallel_limit=parallel_limit, xfail=[], coverage=coverage)
driver.prepend_path('PATH', [join(driver.cwd, 'scripts')])
driver.prepend_path('MYPYPATH', [driver.cwd])
driver.prepend_path('PYTHONPATH', [driver.cwd])
driver.add_flake8()
add_pytest(driver)
add_selftypecheck(driver)
add_stubs(driver)
add_stdlibsamples(driver)
add_samples(driver)
if list_only:
driver.list_tasks()
return
exit_code = driver.waiter.run()
t1 = time.perf_counter()
print('total runtime:', t1 - t0, 'sec')
if verbosity >= 1:
times = driver.waiter.times2 if verbosity >= 2 else driver.waiter.times1
times_sortable = ((t, tp) for (tp, t) in times.items())
for total_time, test_type in sorted(times_sortable, reverse=True):
print('total time in %s: %f' % (test_type, total_time))
sys.exit(exit_code)
if __name__ == '__main__':
main()