https://github.com/SoftwareHeritage/swh-model
Revision 18fde5047233f1a2a53fc790062171001f3e809f authored by Valentin Lorentz on 04 January 2021, 11:46:23 UTC, committed by Valentin Lorentz on 04 January 2021, 14:48:26 UTC
1 parent 5746850
Raw File
Tip revision: 18fde5047233f1a2a53fc790062171001f3e809f authored by Valentin Lorentz on 04 January 2021, 11:46:23 UTC
Add missing slots=True for Directory.
Tip revision: 18fde50
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