https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 5cc2ec5f925769f3f6e2f6248b0e30da16aecd07 authored by Jenkins for Software Heritage on 20 January 2021, 14:36:12 UTC
Updated backport on buster-swh from debian/0.11.0-1_swh1 (unstable-swh)
Tip revision: 5cc2ec5
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