https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 56eb29f7addf4c9245fed909e6341f6f9212b394 authored by Valentin Lorentz on 05 August 2019, 08:56:02 UTC
Add a SHA1_SIZE constant for use by other packages.
Tip revision: 56eb29f
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