forked from tornadoweb/tornado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (26 loc) · 757 Bytes
/
setup.cfg
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
[metadata]
license_file = LICENSE
[mypy]
python_version = 3.5
[mypy-tornado.util]
disallow_untyped_defs = True
[mypy-tornado.httputil]
disallow_untyped_defs = True
[mypy-tornado.escape]
disallow_untyped_defs = True
[mypy-tornado.concurrent]
disallow_untyped_defs = True
[mypy-tornado.gen]
disallow_untyped_defs = True
# It's generally too tedious to require type annotations in tests, but
# we do want to type check them as much as type inference allows.
[mypy-tornado.test.util_test]
check_untyped_defs = True
[mypy-tornado.test.httputil_test]
check_untyped_defs = True
[mypy-tornado.test.escape_test]
check_untyped_defs = True
[mypy-tornado.test.concurrent_test]
check_untyped_defs = True
[mypy-tornado.test.gen_test]
check_untyped_defs = True