cubicweb/skeleton/tox.ini.tmpl
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Fri, 31 Jan 2020 18:01:41 +0100
branch3.27
changeset 12852 a5c7cea1c070
parent 12596 48ea46ad80da
permissions -rw-r--r--
[doc] fix typo

[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/*