Revision c8ee97396c74052b8eb804b2dbc28e5a224dd967 authored by Nicolas Dandrimont on 21 November 2019, 12:46:11 UTC, committed by Nicolas Dandrimont on 21 November 2019, 12:46:11 UTC
1 parent 3b26bf3
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