cubicweb/skeleton/tox.ini.tmpl
author Arthur Lutz <arthur.lutz@logilab.fr>
Fri, 31 Jan 2020 17:24:31 +0100
branch3.27
changeset 12863 f725078656bd
parent 12596 48ea46ad80da
permissions -rw-r--r--
[doc/index] fix link to "how to contribute" and add link to dev dashboard

[tox]
envlist = py3,flake8,check-manifest

[testenv]
deps =
  pytest
commands =
  {envpython} -m pytest {posargs:test}

[testenv:flake8]
basepython = python3
skip_install = true
deps =
  flake8
commands = flake8

[testenv:check-manifest]
skip_install = true
deps =
  check-manifest
commands =
  {envpython} -m check_manifest {toxinidir}

[flake8]
exclude = cubicweb_%(cubename)s/migration/*,test/data/*,.tox/*