https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 09dcc04a4c38b8d3f46ece7028d5a7fc4293eb99 authored by Antoine R. Dumont (@ardumont) on 06 August 2020, 17:00:21 UTC
model: Add final object_type field on metadata related model objects
Tip revision: 09dcc04
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