Revision 6de5089c0a6b67ec5f881cde22b4f0e8e3d81e00 authored by sloosvel on 06 May 2022, 13:59:18 UTC, committed by GitHub on 06 May 2022, 13:59:18 UTC
* Compute bias

* Remove unused import

* Change plot lim range

* Remove Mediterranean region, pending to update script path

* Compute absolute bias and change scale

* Fix typo

* Compute std_dev

* Fix style issues

* Fix codacy

* Fix 365_day datasets

* Clean

* Fix identation

* Fix flake

* Fix docstrings

* Update docs

* Update docu with suggestions
1 parent 2cf0628
Raw File
setup.cfg
[tool:pytest]
addopts =
    --flake8
    --doctest-modules
    --ignore=doc/sphinx/source/conf.py
    --cov=esmvaltool
    --cov-report=xml:test-reports/coverage.xml
    --cov-report=html:test-reports/coverage_html
    --html=test-reports/report.html
    --numprocesses auto
env =
    MPLBACKEND = Agg
flake8-ignore =
    doc/sphinx/source/conf.py ALL
    setup.py ALL
log_level = WARNING
markers =
    installation: test requires installation of dependencies

[coverage:run]
parallel = true

[pydocstyle]
convention = numpy

[isort]
multi_line_output = 3
include_trailing_comma = true

[codespell]
ignore-words-list = vas
back to top