https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: 5bc7f039c27078b413530b784661b4795c099653 authored by Klaus Zimmermann on 09 November 2021, 15:25:38 UTC
Update changelog for 2.4.0 release (#2411)
Tip revision: 5bc7f03
setup.cfg
[build_sphinx]
source-dir = doc/sphinx/source
build-dir = doc/sphinx/build
all_files = 1
builder = html

[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