https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 70e5d50a121bfb5d945600d0598ab8a8997c0ba3 authored by Stefano Zacchiroli on 20 September 2019, 10:13:58 UTC
identifiers.py: do not inherit from on-the-fly namedtuple
Tip revision: 70e5d50
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