https://github.com/GPflow/GPflow
Raw File
Tip revision: 1171b9c16963170b6f05533042ede310cda17afb authored by Jesper Nielsen on 01 March 2022, 12:35:20 UTC
Merge pull request #1794 from GPflow/develop
Tip revision: 1171b9c
mypy.ini
[mypy]
; First we turn on *all the checks*, and then we turn off those that are too annoying.
strict = True
ignore_missing_imports = True
disallow_subclassing_any = False
disallow_untyped_calls = False
disallow_untyped_decorators = False
; It would actually be good to disallow implicit reexport, but that will take some effort to be
; strict about our use of __all__.
implicit_reexport = True
; Remove this when we think we're done.
warn_return_any = False

; the following modules are not passing mypy, so we're skipping them until they've been fixed up.
; see github issue https://github.com/GPflow/GPflow/issues/1368 for more information. Note that some
; modules that haven't had types added are passing anyway so may not appear below.
;
; remove modules from this skip list when types have been added
[mypy-gpflow.models.*,tests.gpflow.models.*]
ignore_errors = True

[mypy-gpflow.utilities.*,tests.gpflow.utilities.*]
ignore_errors = True

[mypy-tests.integration.*]
ignore_errors = True
back to top