https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: fc3d3c1c7e3ec6d07988f86abd1846bfc615e9be authored by Valentin Lorentz on 26 April 2019, 11:33:29 UTC
Prevent from_dict() from changing its input dict.
Tip revision: fc3d3c1
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