https://github.com/SoftwareHeritage/swh-model
Revision 2aca1be76b5743454b4b5afd2c51f803f2e243ba authored by David Douard on 18 October 2018, 13:24:52 UTC, committed by David Douard on 18 October 2018, 13:24:52 UTC
1 parent 0250497
Raw File
Tip revision: 2aca1be76b5743454b4b5afd2c51f803f2e243ba authored by David Douard on 18 October 2018, 13:24:52 UTC
add .tox to gitignore
Tip revision: 2aca1be
tox.ini
[tox]
envlist=flake8,py3

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

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