https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 01a5d4cea166a71d96bbe4e8c3648128b06b9d3c authored by Valentin Lorentz on 19 August 2019, 12:35:41 UTC
Add a get_hash helper method to Content.
Tip revision: 01a5d4c
tox.ini
[tox]
envlist=flake8,py3

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

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