-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytype_ci.cfg
35 lines (26 loc) · 1.18 KB
/
pytype_ci.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
# NOTE: All relative paths are relative to the location of this file.
[pytype]
# Space-separated list of files or directories to process.
inputs = slim/ tests/
# Note: pytype is not able to see pyqt5 symbols for some reason
exclude = slim/surveys/**.py slim/gui_utils/**.py slim/SeaLiceMgmtGUI.py
# Python version (major.minor) of the target code.
python_version = 3.8
# Paths to source code directories, separated by ':'.
pythonpath =
.
# Use the enum overlay for more precise enum checking. This flag is temporary
# and will be removed once this behavior is enabled by default.
use_enum_overlay = True
# Bind @property methods to the classes they're defined on for more precise
# type-checking. This flag is temporary and will be removed once this behavior
# is enabled by default.
# bind_properties = True
# Keep going past errors to analyze as many files as possible.
keep_going = False
# Apply PEP 526-style variable annotations on attributes. This flag is temporary
# and will be removed once this behavior is enabled by default.
attribute_variable_annotations = True
# Run N jobs in parallel. When 'auto' is used, this will be equivalent to the
# number of CPUs on the host system.
jobs = 8