https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 1295f45d69c584487835a7a4a8de9e231647e4d2 authored by Stefano Zacchiroli on 20 September 2019, 13:49:10 UTC
MANIFEST.in: ship py.typed
Tip revision: 1295f45
tox.ini
[tox]
envlist=flake8,py3,mypy

[testenv:py3]
deps =
  .[testing]
  pytest-cov
commands =
  pytest --cov=swh --cov-branch {posargs}

[testenv:flake8]
skip_install = true
deps =
  flake8
commands =
  {envpython} -m flake8

[testenv:mypy]
skip_install = true
deps =
  .[testing]
  mypy
commands =
  mypy swh
back to top