Revision 2974b94deea2dd84ec90059f946159bbd8b1fc43 authored by st-- on 07 October 2019, 12:47:36 UTC, committed by GitHub on 07 October 2019, 12:47:36 UTC
* add tests of gpflow.config

* make config tests pass

* use raise NotImplementedError in abstractmethod so codecov does not count it

* swap order of tests so that it ends up in the original state

* pca_reduce: turn assert into ValueError

* add tests for gplvm constructor checks

* add pragma no cover to scipy optimizer type check

* more NotImplementedErrors

* update codecov.yml

* add missing logdensities tests

* Change code coverage threshold to 95% so that the build status reports actually mean something again

* improve test_dtype_errorcheck

* pragma: no cover for ValueError check

* .
1 parent 48933ab
Raw File
codecov.yml
coverage:
  status:
    project:
      default:
        target: 95%
        threshold: 1%
    patch:
      default:
        target: 97%
        threshold: 1%

ignore:
  - "*.py"
  - "tests/*.py"
  - "gpflow/ci_utils.py"
  - "gpflow/versions.py"
  - "doc/source/notebooks/*"
back to top