https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: 231b9c0cda49e791994cfc590826b8e43a0bb393 authored by BenMGeo on 14 August 2020, 12:54:00 UTC
correct naming
Tip revision: 231b9c0
setup.cfg
[aliases]
test=pytest

[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
env =
    MPLBACKEND = Agg
flake8-ignore =
    doc/sphinx/source/conf.py ALL
log_level = WARNING
markers =
    installation: test requires installation of dependencies

[coverage:run]
parallel = true

[pydocstyle]
convention = numpy
back to top