https://github.com/GPflow/GPflow
Revision 65a79e4d3e81d35ad421fe6ca3601c2046159af1 authored by st-- on 30 September 2020, 16:42:05 UTC, committed by GitHub on 30 September 2020, 16:42:05 UTC
* GPflow now includes an isort check in its CI build. Run with `make format` / `make format-check`.
1 parent d618fe5
Raw File
Tip revision: 65a79e4d3e81d35ad421fe6ca3601c2046159af1 authored by st-- on 30 September 2020, 16:42:05 UTC
isort for consistent imports (#1572)
Tip revision: 65a79e4
mypy.ini
[mypy]
ignore_missing_imports = True

; 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.conditionals.*,gpflow.config.*,gpflow.covariances.*,gpflow.expectations.*]
ignore_errors = True

[mypy-gpflow.kernels.*,gpflow.models.*,gpflow.monitor.*,gpflow.optimizers.natgrad,gpflow.optimizers.mcmc,gpflow.utilities.*]
ignore_errors = True

[mypy-gpflow.mean_functions]
ignore_errors = True

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