https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: fa140b2c38f9d76bdbd41dd8c3d2a2cbdbb9ffc4 authored by Nicolas Dandrimont on 29 October 2018, 15:07:38 UTC
Remove debian directory
Tip revision: fa140b2
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