https://github.com/GPflow/GPflow
Revision a4ebca06bbcc4e4efc36f65a3fc3bc9e8117b6f9 authored by Jesper Nielsen on 04 March 2022, 11:45:40 UTC, committed by GitHub on 04 March 2022, 11:45:40 UTC
1 parent cdf3c93
Raw File
Tip revision: a4ebca06bbcc4e4efc36f65a3fc3bc9e8117b6f9 authored by Jesper Nielsen on 04 March 2022, 11:45:40 UTC
Make BO integration tests faster - they're currently our slowest tests. (#1805)
Tip revision: a4ebca0
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
back to top