https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: a251df2e5b31a5d59d7e69e51a441bb22b1a7b0b authored by Valentin Lorentz on 29 September 2020, 12:08:08 UTC
Add a 'unique_key' method on model objects
Tip revision: a251df2
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==19.10b0
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