https://github.com/ESMValGroup/ESMValTool
Revision df7d26087cdb05ce1ccadc0ec0a625d7e7db3687 authored by Tomas Torsvik on 15 February 2024, 11:21:33 UTC, committed by GitHub on 15 February 2024, 11:21:33 UTC
1 parent 1d5382a
Raw File
Tip revision: df7d26087cdb05ce1ccadc0ec0a625d7e7db3687 authored by Tomas Torsvik on 15 February 2024, 11:21:33 UTC
Update OceanSODA-ETHZ CMORizer with new source file (#3535)
Tip revision: df7d260
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