Revision 276a528c2f35e3c45040a1cdfbb953b1bc7f489a authored by David Douard on 21 November 2019, 12:33:54 UTC, committed by David Douard on 21 November 2019, 12:47:13 UTC
1 parent c8ee973
Raw File
tox.ini
[tox]
envlist=flake8,mypy,py3

[testenv]
extras =
  testing
deps =
  pytest-cov
commands =
  pytest --cov={envsitepackagesdir}/swh/model \
         {envsitepackagesdir}/swh/model \
           --cov-branch {posargs}

[testenv:flake8]
skip_install = true
deps =
  flake8
commands =
  {envpython} -m flake8

[testenv:mypy]
extras =
  testing
deps =
  mypy
commands =
  mypy swh
back to top