https://github.com/ESMValGroup/ESMValTool
Revision 4334c61a88d7e1b2203794d1abc7e3bb9440bafa authored by Valeriu Predoi on 20 April 2020, 16:06:09 UTC, committed by Valeriu Predoi on 20 April 2020, 16:06:09 UTC
1 parent 7e11910
Raw File
Tip revision: 4334c61a88d7e1b2203794d1abc7e3bb9440bafa authored by Valeriu Predoi on 20 April 2020, 16:06:09 UTC
fixed V's sleeping on the job
Tip revision: 4334c61
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