Revision cb0fd81a0c3c27b6a04ef9adf6f323dfcf8de9fb authored by Lukas on 18 July 2022, 14:33:04 UTC, committed by GitHub on 18 July 2022, 14:33:04 UTC
* fix_nested_axes

* Corrected provenance for lif1f2.py.

* Provenance fixes.

* use size instead of len

Co-authored-by: Katja Weigel <weigel@iup.physik.uni-bremen.de>
1 parent 154cb9e
Raw File
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