cubicweb/skeleton/tox.ini.tmpl
author David Douard <david.douard@logilab.fr>
Tue, 04 Apr 2017 11:41:23 +0200
branch3.25
changeset 12140 20035170160c
parent 12099 5dd20fc21557
child 12341 921dfb88b115
permissions -rw-r--r--
[cwctl] do only clean static data dir content (closes #17069762) deleting the directory itself is useless and may be a problem in automated deployment environments (user may not have permissions to delete or create that directory).

[tox]
envlist = py27,py34,flake8

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

[testenv:flake8]
skip_install = true
whitelist_externals =
  flake8
deps =
  flake8
commands = flake8

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