cubicweb/skeleton/tox.ini.tmpl
author Noe Gaumont <ngaumont@logilab.fr>
Wed, 22 May 2019 11:32:09 +0200
changeset 12623 4e7ff3dd79fd
parent 12596 48ea46ad80da
permissions -rw-r--r--
[doc] set_operation has been replaced by add_data See the changelog https://cubicweb.readthedocs.io/en/3.26/changes/changelog/#id14

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