https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: ba0c4e19e6b01f0c9585832f7fe430975f48ab8c authored by Antoine R. Dumont (@ardumont) on 16 June 2020, 17:10:53 UTC
model.hypothesis_strategies: Make metadata always none on origin_visit
Tip revision: ba0c4e1
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