https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: 2d07f699a0ed0d6bafef9ff568fa23c5dd4f37a5 authored by Manuel Schlund on 11 July 2022, 11:23:11 UTC
Added option to group bars by color
Tip revision: 2d07f69
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