Revision 5ba10a53075a04066850ced1bfb89b8fe9844056 authored by FranziskaWinterstein on 29 November 2023, 16:25:03 UTC, committed by GitHub on 29 November 2023, 16:25:03 UTC
Co-authored-by: Axel Lauer <axel.lauer@dlr.de>
Co-authored-by: Manuel Schlund <32543114+schlunma@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: valeriupredoi <valeriupredoi@users.noreply.github.com>
Co-authored-by: Valeriu Predoi <valeriu.predoi@gmail.com>
Co-authored-by: Manuel Schlund <manuel.schlund@dlr.de>
1 parent 4cce892
Raw File
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