https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: 844c0f379636a5319838edf24b6ffb00a94836c3 authored by Nick Savage on 24 June 2022, 09:36:03 UTC
Merge branch 'main' into recipe_GCM_RCM
Tip revision: 844c0f3
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