https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: d7653fc0c2b7a43f60282ae3d264a7c4f07ee0ff authored by Birgit Hassler on 05 April 2024, 14:30:17 UTC
adjusting so that EMAC can be used as model to be benchmarked
Tip revision: d7653fc
setup.cfg
[tool:pytest]
addopts =
    --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
log_level = WARNING
markers =
    installation: test requires installation of dependencies

[coverage:run]
parallel = true

[flake8]
exclude =
    doc/sphinx/source/conf.py ALL
    setup.py ALL

[pydocstyle]
convention = numpy

[isort]
multi_line_output = 3
include_trailing_comma = true

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