Revision cd9d24c88b5820f3b701be3b9845b577161b177c authored by Jenkins for Software Heritage on 06 August 2020, 18:04:14 UTC, committed by Jenkins for Software Heritage on 06 August 2020, 18:04:14 UTC
1 parent 7e8ef9a
Raw File
tox.ini
[tox]
envlist=black,flake8,mypy,py3

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

[testenv:black]
skip_install = true
deps =
  black
commands =
  {envpython} -m black --check swh

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

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